Intel® Quark™ Microcontroller Software Interface  1.4.0
Intel® Quark™ Microcontroller BSP
ss_init.h
1 /*
2  * {% copyright %}
3  */
4 
5 #ifndef __SS_INIT_H__
6 #define __SS_INIT_H__
7 
8 #include "qm_common.h"
9 #include "qm_soc_regs.h"
10 
11 /**
12  * Sensor Subsystem initialisation.
13  *
14  * @defgroup groupSSINIT Quark SE Sensor Subsystem Initialisation
15  * @{
16  */
17 
18 /**
19  * Initialise the sensor subsystem.
20  *
21  * Set the ARC reset vector with the sensor subsystem application entry point
22  * address. Then, instruct the ARC to start running.
23  * Note: This function is only intended to be called from the Lakemont core.
24  *
25  * @return void.
26  */
27 void sensor_activation(void);
28 
29 /**
30  * @}
31  */
32 
33 #endif /* __SS_INIT_H__ */
void sensor_activation(void)
Initialise the sensor subsystem.
Definition: ss_init.c:37