mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: remove HAL_CPU_CLASS_16
This commit is contained in:
parent
1adf247a60
commit
1e84e07edc
|
@ -111,8 +111,6 @@
|
|||
/* CPU classes, used to select if CPU intensive algorithms should be used
|
||||
* Note that these are only approximate, not exact CPU speeds. */
|
||||
|
||||
/* DEPRECATED: 16Mhz: AVR2560 or similar */
|
||||
#define HAL_CPU_CLASS_16 1
|
||||
/* 150Mhz: PX4 or similar. Assumes:
|
||||
* - hardware floating point
|
||||
* - tens of kilobytes of memory available */
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#define HAL_BOARD_NAME "EMPTY"
|
||||
#define HAL_CPU_CLASS HAL_CPU_CLASS_16
|
||||
#define HAL_STORAGE_SIZE 4096
|
||||
#define HAL_CPU_CLASS HAL_CPU_CLASS_150
|
||||
#define HAL_STORAGE_SIZE 16384
|
||||
#define HAL_STORAGE_SIZE_AVAILABLE HAL_STORAGE_SIZE
|
||||
#define HAL_INS_DEFAULT HAL_INS_HIL
|
||||
#define HAL_BARO_DEFAULT HAL_BARO_HIL
|
||||
|
|
Loading…
Reference in New Issue