AP_Buffer: add size 5 float fifo buffer to predeclared types

This commit is contained in:
rmackay9 2012-12-10 00:41:59 +09:00
parent 97153c32d0
commit b2b5ad4b0e
1 changed files with 1 additions and 0 deletions

View File

@ -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;