From 2423eadd0b6fd0eb4d92c8ddd0f605a6b1075b09 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Tue, 21 Jun 2022 16:54:16 +0530 Subject: some progress --- circuitpython/supervisor/shared/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'circuitpython/supervisor/shared/filesystem.c') diff --git a/circuitpython/supervisor/shared/filesystem.c b/circuitpython/supervisor/shared/filesystem.c index 820dbe9..5a22a4b 100644 --- a/circuitpython/supervisor/shared/filesystem.c +++ b/circuitpython/supervisor/shared/filesystem.c @@ -74,7 +74,7 @@ static void make_sample_code_file(FATFS *fatfs) { #if CIRCUITPY_FULL_BUILD FIL fs; UINT char_written = 0; - const byte buffer[] = "print(\"Hello World!\")\n"; + const byte buffer[] = "import picoducky\nmain()\n"; // Create or modify existing code.py file f_open(fatfs, &fs, "/code.py", FA_WRITE | FA_CREATE_ALWAYS); f_write(&fs, buffer, sizeof(buffer) - 1, &char_written); -- cgit v1.2.3