*** empty log message ***

This commit is contained in:
Antoine Drouin
2005-08-17 17:43:17 +00:00
parent 9df7597977
commit 3f105a6046
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -345,7 +345,7 @@
<field name="energy" type="float" unit="Wh"/>
</message>
<message name="SVINFO" ID="16">
<message name="SVSINFO" ID="16">
<field name="ac_id" type="string"/>
<field name="svid" type="string" format="csv"/>
<field name="flags" type="string" format="csv"/>
+2 -2
View File
@@ -14,8 +14,8 @@ ARCH = atmega128
# low_fuse e1
#
# bootloader base in bytes
BL_BASE = 0x1800
# bootloader base in bytes (0xF000 in words)
BL_BASE = 0x1E00
bootloader.elf: bootloader.c
avr-gcc -Wall -mmcu=$(ARCH) -Ttext $(BL_BASE) -o $@ $<
+6 -2
View File
@@ -3,7 +3,11 @@
#include <avr/boot.h>
#include <avr/pgmspace.h>
#define BL_SIZE 1024
/* mega128
FLASHEND => 0x1FFFF (131071)
*/
#define BL_SIZE 4096 /* words */
#define APP_END (FLASHEND - BL_SIZE)
#define PARTCODE 0x44
#define SIG_BYTE3 0x02
@@ -146,7 +150,7 @@ static void process_input ( uint8_t c ) {
}
#include "led_v1_2.h";
#include "led_v1_2.h"
int main ( void ) {
cli();