Project

General

Profile

Statistics
| Branch: | Revision:

root / scout_avr / bom / bootloader.h @ 6030b995

History | View | Annotate | Download (230 Bytes)

1
#ifndef BOOTLOADER_H
2
#define BOOTLOADER_H
3

    
4
#define BOM_I2C_PGRM 30
5
#define BOM_I2C_STRT 31
6
#define START_ADDR 0xA00
7

    
8
#define strt_pgrm ((void (*)(void)) _VECTORS_SIZE)
9

    
10
void boot_program_page (uint32_t page, uint8_t *buf);
11

    
12
#endif