Home | History | Annotate | Download | only in bosch_bmi160

Lines Matching defs:TASK

539     volatile uint8_t state;  //task state, type enum SensorState, do NOT change this directly
691 #define TASK _Task* const _task
693 // To get rid of static variables all task functions should have a task structure pointer input.
695 #define TDECL() TASK = &mTask; (void)_task
697 // Access task variables without explicitly specify the task structure pointer.
710 static bool trySwitchState_(TASK, enum SensorState newState) {
725 static void chunkedReadInit_(TASK, int index, int size);
728 static void initiateFifoRead_(TASK, bool isInterruptContext);
734 static void handleOtcGyroConfig_(TASK, const struct AppToSensorHalDataPayload *data);
745 static uint8_t calcWatermark2_(TASK);
888 TASK = container_of(isr, struct BMI160Task, Isr1);
902 TASK = container_of(isr, struct BMI160Task, Isr2);
2418 "sensortime invalid: full, frame, task = %llu, %llu, %llu\n",
4070 static void chunkedReadInit_(TASK, int index, int size) {
4108 TASK = (_Task*) cookie;
4143 * If task is in idle state, init chunked FIFO read; otherwise, submit an interrupt message or mark
4149 static void initiateFifoRead_(TASK, bool isInterruptContext) {
4218 static uint8_t calcWatermark2_(TASK) {
4283 static void handleOtcGyroConfig_(TASK, const struct AppToSensorHalDataPayload *data) {
4296 static bool sendOtcGyroUpdate_(TASK) {