mirror of https://github.com/ArduPilot/ardupilot
27 lines
460 B
C++
27 lines
460 B
C++
/*
|
|
* 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
|