CAC_smartcushion / Mbed OS AdiSense1000_V21_Smartcushion

Fork of Sean_AdiSense1000_V21 by Rohan Gurav

Committer:
nfathurr
Date:
Mon Sep 24 11:39:35 2018 +0000
Revision:
34:029fc3b83f78
v21

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nfathurr 34:029fc3b83f78 1 #ifndef __ADISENSE1000_BOOT_
nfathurr 34:029fc3b83f78 2 #define __ADISENSE1000_BOOT_
nfathurr 34:029fc3b83f78 3
nfathurr 34:029fc3b83f78 4 #include "adi_sense_api.h"
nfathurr 34:029fc3b83f78 5 #include "pc_interface/pc_serial.h"
nfathurr 34:029fc3b83f78 6 #include "mbed.h"
nfathurr 34:029fc3b83f78 7 #include "pc_interface/pc_interface.h"
nfathurr 34:029fc3b83f78 8
nfathurr 34:029fc3b83f78 9 //config structs for channels
nfathurr 34:029fc3b83f78 10 extern ADI_SENSE_CONFIG smartcushion_adisense_config;
nfathurr 34:029fc3b83f78 11 extern ADI_SENSE_1000_LUT_DESCRIPTOR *sample_lut_desc_list[];
nfathurr 34:029fc3b83f78 12 extern ADI_SENSE_1000_LUT_TABLE_DATA *sample_lut_data_list[];
nfathurr 34:029fc3b83f78 13 extern unsigned sample_lut_num_tables;
nfathurr 34:029fc3b83f78 14
nfathurr 34:029fc3b83f78 15 /* Change the following pointer to select any of the configurations above */
nfathurr 34:029fc3b83f78 16 static ADI_SENSE_CONFIG *pSelectedConfig = &smartcushion_adisense_config;
nfathurr 34:029fc3b83f78 17 /*
nfathurr 34:029fc3b83f78 18 Definitions
nfathurr 34:029fc3b83f78 19 */
nfathurr 34:029fc3b83f78 20
nfathurr 34:029fc3b83f78 21 /*
nfathurr 34:029fc3b83f78 22 Function Prototypes
nfathurr 34:029fc3b83f78 23 */
nfathurr 34:029fc3b83f78 24
nfathurr 34:029fc3b83f78 25 //reset device to known state
nfathurr 34:029fc3b83f78 26 uint8_t Adisense1000_Boot(void);
nfathurr 34:029fc3b83f78 27
nfathurr 34:029fc3b83f78 28 #endif
nfathurr 34:029fc3b83f78 29