You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
460 B
26 lines
460 B
/* |
|
* Board_APM1_2560.h |
|
* |
|
* Created on: Dec 7, 2011 |
|
* |
|
*/ |
|
|
|
#ifndef Board_APM1_2560_H_ |
|
#define Board_APM1_2560_H_ |
|
|
|
#include "Board_APM1.h" |
|
|
|
namespace apo { |
|
|
|
class Board_APM1_2560 : public Board_APM1 { |
|
public: |
|
Board_APM1_2560(AP_Board::mode_e mode, MAV_TYPE vehicle, options_t options) : Board_APM1(mode,vehicle,options) { |
|
eepromMaxAddr = 1024; |
|
} |
|
private: |
|
}; |
|
|
|
} // namespace apo |
|
|
|
#endif /* AP_BOARD_APM1_2560_H_ */ |
|
// vim:ts=4:sw=4:expandtab
|
|
|