mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-12 20:08:48 +01:00
7a66232be0
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1507 ebee16cc-31ac-478f-84a7-5cbb03baadba
32 lines
717 B
C
32 lines
717 B
C
/*
|
|
* board.h
|
|
*
|
|
* Created on: 2010/08/31
|
|
* Author: Programacao
|
|
*/
|
|
|
|
#ifndef BOARD_H_
|
|
#define BOARD_H_
|
|
|
|
#define deviceID 69
|
|
|
|
#define board_can_read 1
|
|
#define board_can_write 1
|
|
|
|
|
|
/**************************************************/
|
|
/* OP_DFU Memory locations */
|
|
/**************************************************/
|
|
|
|
#define StartOfUserCode 0x08006000
|
|
|
|
/**************************************************/
|
|
/* OP_DFU Mem Sizes */
|
|
/**************************************************/
|
|
|
|
#define SizeOfHash 20
|
|
#define SizeOfDescription 100
|
|
#define SizeOfCode 499712-SizeOfHash-SizeOfDescription //488K
|
|
|
|
#endif /* BOARD_H_ */
|