You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Code/pico_multi_booter/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
Here is a bootloader for PicoCalc combined slightly modified [PicoMite](https://github.com/madcock/PicoMiteAllVersions) and [SD boot](https://github.com/adwuard/Picocalc_SD_Boot)
4
4
5
5
- Pico1
6
-
- No sdcard inserted ,PicoMite will show up.
7
-
- Sdcard inserted, SD boot menu will show up, load third pico app bin to run at FLASH TARGET OFFSET 2048k-940k
6
+
- No sdcard inserted,load default app to run from flash.
7
+
- Sdcard inserted, SD boot menu will show up, load third pico app bin to run at FLASH TARGET OFFSET 2048k-152k
8
8
9
9
## How to compile
10
10
```
@@ -29,13 +29,13 @@ configuration.h
29
29
30
30
config.h
31
31
```
32
-
#define SD_BOOT_FLASH_OFFSET (940 * 1024)
32
+
#define SD_BOOT_FLASH_OFFSET (152 * 1024)
33
33
```
34
34
35
35
### SD Card Application Build and Deployment
36
36
**Important Note:**
37
37
```
38
-
Applications intended for SD card boot "MUST REBUILD" using a custom linker script to accommodate the program's offset(940k) address.
38
+
Applications intended for SD card boot "MUST REBUILD" using a custom linker script to accommodate the program's offset(152k) address.
39
39
40
40
Applications intended for SD card boot is in **bin** format, not uf2.
41
41
@@ -81,7 +81,7 @@ make
81
81
```
82
82
83
83
#### Step 3 Your Custom Application Is Ready For SD Card Boot
84
-
Once the build is complete, copy the generated `.bin` file to the `/sd` directory of the SD card.
84
+
Once the build is complete, copy the generated `.bin` file to the `/firmware` directory of the SD card.
0 commit comments