|
@@ -10,20 +10,17 @@
|
|
Bootloader assumes that start of application is typical vector table generated by most compilers. When Optiboot change start vector, it saves original jump to another free vector. Typically it uses SPM_RDY vector, or WDT if SPM_RDY is unavailable.
|
|
Bootloader assumes that start of application is typical vector table generated by most compilers. When Optiboot change start vector, it saves original jump to another free vector. Typically it uses SPM_RDY vector, or WDT if SPM_RDY is unavailable.
|
|
|
|
|
|
1. I have chip without SPM_RDY and I need to use WDR vector in my code.<br>
|
|
1. I have chip without SPM_RDY and I need to use WDR vector in my code.<br>
|
|
- It's possible to assign arbitrary vector using additional option to CFLAGS: `-Dsave_vect_num=xxx` where xxx could be name of vector like `EE_RDY_vect_num` (see virboot8 target in Makefile) or even just number (see attiny84 target in Makefile.extras). In fact, any number could be used, even outside vector table. There is only one limitation: it **MUST** be located in first flash page!
|
|
|
|
|
|
+ It's possible to use an arbitrary vector by adding an additional option to CFLAGS: `-Dsave_vect_num=xxx` where xxx could be name of vector like `EE_RDY_vect_num` (see virboot8 target in Makefile) or even just number (see attiny84 target in Makefile.extras). In fact, any number could be used, even outside vector table. There is only one limitation: it **MUST** be located in first flash page!
|
|
|
|
|
|
- 1. I don't use a vector table. Can I use it anyway?<br?
|
|
|
|
|
|
+ 1. I don't use a vector table. Can I use this anyway?<br>
|
|
Yes, as long as first instruction is **jmp** on chips with more than 8KB memory or **rjmp** on smaller memory devices. You must also provide another jump to store old jump by Optiboot.<br>
|
|
Yes, as long as first instruction is **jmp** on chips with more than 8KB memory or **rjmp** on smaller memory devices. You must also provide another jump to store old jump by Optiboot.<br>
|
|
- It could be done for example by adding `-Dsave_vect_num=1` to CFLAGS during compiling bootloader, and making beginning of application like this:
|
|
|
|
-
|
|
|
|
- ~~~~
|
|
|
|
- rjmp app
|
|
|
|
- rjmp nowhere
|
|
|
|
- app:
|
|
|
|
- ... ;your code here
|
|
|
|
- ~~~~
|
|
|
|
|
|
+ It could be done for example by adding `-Dsave_vect_num=1` to CFLAGS during compiling bootloader, and making beginning of application like this: <br>
|
|
|
|
+ ` rjmp app`<br>
|
|
|
|
+ ` rjmp nowhere`<br>
|
|
|
|
+` app:`<br>
|
|
|
|
+ ` ... ;your code here`<br>
|
|
|
|
|
|
- 1. I want to add VBP to chip XXX<br>
|
|
|
|
|
|
+ 1. How do I add VBP to chip XXX<br>
|
|
Check Makefile targets **virboot8**, **virboot328** or **attiny84** for examples.<br>
|
|
Check Makefile targets **virboot8**, **virboot328** or **attiny84** for examples.<br>
|
|
There are 2 things required:<br>
|
|
There are 2 things required:<br>
|
|
Add `-DVIRTUAL_BOOT_PARTITION` to CFLAGS<br>
|
|
Add `-DVIRTUAL_BOOT_PARTITION` to CFLAGS<br>
|