-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_hw_task.c
107 lines (88 loc) · 3.4 KB
/
app_hw_task.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* @file
* See header file for description!
*
* @copyright 2020 Silicon Laboratories Inc.
*/
#include <zaf_event_distributor_ncp.h>
#include "app_events.h"
#include <SizeOf.h>
#include <zpal_power_manager.h>
// #define DEBUGPRINT
#include <DebugPrint.h>
#include <app_hw_task.h>
#include "drivers/ws2812.h"
#include "drivers/qma6100p.h"
/****************************************************************
* CONFIGURATIONS OF THIS MODULE
***************************************************************/
/****************************************************************
* DEFINITIONS
***************************************************************/
/****************************************************************
* TYPEDEF and CONSTANTS
***************************************************************/
/****************************************************************
* MACROS
***************************************************************/
#define USER_TASK_WAKEUP_PERIOD 500
/****************************************************************
* FORWARD DECLARATIONS (none preferred)
***************************************************************/
/****************************************************************
* STATIC VARIABLES
***************************************************************/
static zpal_pm_handle_t task_power_lock;
/****************************************************************
* EXTERNAL VARIABLES (none preferred)
***************************************************************/
/****************************************************************
* STATIC FUNCTIONS
***************************************************************/
/**
* This function does the main operation of this task, which is defined by the User.
*/
NO_RETURN static void executeThread(void)
{
for (;;)
{
zpal_pm_stay_awake(task_power_lock, 0);
int16_t acc_data[3];
qma6100p_read_raw_xyz(acc_data);
gyro_reading_t gyro_reading = {
.x = acc_data[0],
.y = acc_data[1],
.z = acc_data[2]};
nc_event_payload_t payload = {
.gyro_reading = gyro_reading};
zaf_event_distributor_enqueue_proprietary_app_event(EVENT_APP_USERTASK_GYRO_MEASUREMENT, &payload);
zpal_pm_cancel(task_power_lock);
vTaskDelay(pdMS_TO_TICKS(USER_TASK_WAKEUP_PERIOD));
}
}
/****************************************************************
* API FUNCTIONS
***************************************************************/
/****************************************************************
* THREAD FUNCTION
***************************************************************/
/**
* A pointer to this function is passed to ZW_UserTask_CreateTask().
*
* ATTENTION: This task context shall never call a ZAF API function!
*
* The pointer passed to this function is user defined (void-pointer),
* but here casted to SApplicationHandles-pointer.
*/
NO_RETURN void
NC_UserTask_Hardware(__attribute__((unused)) void *pUserTaskParam)
{
DPRINT("\r\nHardware UserTask started!");
task_power_lock = zpal_pm_register(ZPAL_PM_TYPE_DEEP_SLEEP);
// Generate event that says the Data acquisition UserTask has started!
if (zaf_event_distributor_enqueue_proprietary_app_event(EVENT_APP_USERTASK_READY, NULL))
{
DPRINT("\r\nNC_UserTask: Ready event is sent to main app!\r\n");
}
executeThread();
}