| 
| 
#define  | TOTAL_MEASUREMENT_COUNT   (16) | 
|   | Total number of measurment channels. 
  | 
|   | 
| 
#define  | IS_CONTROL_CORE   (defined(CORE_CM7)) | 
|   | Select the core for control systems. 
  | 
|   | 
| 
#define  | IS_COMMS_CORE   (defined(CORE_CM4)) | 
|   | Select the core for communication systems. 
  | 
|   | 
| 
#define  | IS_STORAGE_CORE   (defined(CORE_CM4)) | 
|   | Select the core for storage operations. 
  | 
|   | 
| 
#define  | IS_ADC_STATS_CORE   (defined(CORE_CM4)) | 
|   | Select the core analog to digital conversion. 
  | 
|   | 
| 
#define  | ADC_BULK_STATS   (1) | 
|   | Compute the statistics of the ADC in bulk. 
  | 
|   | 
| 
#define  | IS_ADC_CM7   (1) | 
|   | Checks if the ADC conversion is on CM7. 
  | 
|   | 
| 
#define  | MAX11046_ENABLE   (1) | 
|   | Enable the MAX11046 drivers. 
  | 
|   | 
| 
#define  | IS_DMA_ADC_DATA_COLLECTION_SUPERIOR   (0) | 
|   | If ADC data collection through DMA is more efficient than manual collection set to 1. 
  | 
|   | 
| 
#define  | IS_LOCAL_STORAGE_FASTER   (defined(CORE_CM7)) | 
|   | If local RAM storage is faster than distant RAM set to 1. 
  | 
|   | 
| 
#define  | IS_ADC_CM4   (!IS_ADC_CM7) | 
|   | Checks if the ADC conversion is on CM4. 
  | 
|   | 
| 
#define  | IS_ADC_CORE   ((IS_ADC_CM7 && defined(CORE_CM7)) || (IS_ADC_CM4 && defined(CORE_CM4))) | 
|   | Checks if the ADC conversion is on current core. 
  | 
|   | 
| 
#define  | ENABLE_PROFILING   (1) | 
|   | Disable profiling to improve efficiency of the code. 
  | 
|   |