mirror of https://github.com/ArduPilot/ardupilot
AP_Buffer: add size 5 float fifo buffer to predeclared types
This commit is contained in:
parent
97153c32d0
commit
b2b5ad4b0e
|
@ -49,6 +49,7 @@ typedef AP_Buffer<uint8_t,32> AP_BufferUInt8_Size32;
|
|||
typedef AP_Buffer<uint8_t,64> AP_BufferUInt8_Size64;
|
||||
typedef AP_Buffer<uint8_t,128> AP_BufferUInt8_Size128;
|
||||
|
||||
typedef AP_Buffer<float,5> AP_BufferFloat_Size5;
|
||||
typedef AP_Buffer<float,10> AP_BufferFloat_Size10;
|
||||
typedef AP_Buffer<float,15> AP_BufferFloat_Size15;
|
||||
typedef AP_Buffer<float,20> AP_BufferFloat_Size20;
|
||||
|
|
Loading…
Reference in New Issue