11 lines
208 B
C
11 lines
208 B
C
|
|
#ifndef DSP_TABLES_H
|
||
|
|
#define DSP_TABLES_H
|
||
|
|
|
||
|
|
#include <inttypes.h>
|
||
|
|
|
||
|
|
const uint16_t * get_uc8_mag_table();
|
||
|
|
const uint16_t * get_sc16q11_mag_11bit_table();
|
||
|
|
const uint16_t * get_sc16q11_mag_12bit_table();
|
||
|
|
|
||
|
|
#endif
|