-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.c
1245 lines (1094 loc) · 40.9 KB
/
app.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file
* Serial API implementation for Enhanced Z-Wave module
*
* @copyright 2019 Silicon Laboratories Inc.
*/
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "SyncEvent.h"
#ifdef ZW_CONTROLLER
#include "ZW_controller_api.h"
#endif /* ZW_CONTROLLER */
#include "AppTimer.h"
#include "ZW_system_startup_api.h"
#include "zpal_retention_register.h"
/* Include app header file - containing version and */
/* SerialAPI functionality support definitions */
#ifdef ZW_SECURITY_PROTOCOL
#include "ZW_security_api.h"
#include "ZW_TransportSecProtocol.h"
#endif
#include "DebugPrintConfig.h"
// SerialAPI uses SWO for debug output.
// For example SWO Terminal in Studio commander can be used to get the output.
//#define DEBUGPRINT
#include "DebugPrint.h"
#include "app_node_info.h"
#include "serialapi_file.h"
#include "cmd_handlers.h"
#include "cmds_management.h"
#include "ZAF_Common_interface.h"
#include "utils.h"
#include "app_hw.h"
#include "SerialAPI_hw.h"
#include "zaf_event_distributor_ncp.h"
#include "zpal_misc.h"
#include "zpal_watchdog.h"
#include "zaf_protocol_config.h"
#ifdef DEBUGPRINT
#include "ZAF_PrintAppInfo.h"
#endif
#include "ZAF_AppName.h"
#include <assert.h>
#if (!defined(SL_CATALOG_SILICON_LABS_ZWAVE_APPLICATION_PRESENT) && !defined(UNIT_TEST))
#include "app_hw.h"
#endif
#include "drivers/ws2812.h"
#include "drivers/qma6100p.h"
#include "cmds_proprietary.h"
/********************************
* Data Acquisition Task
*******************************/
#include "app_hw_task.h"
#include "app_events.h"
#include "sl_button.h"
#define HW_TASK_STACK_SIZE 1000 // [bytes]
static TaskHandle_t m_xTaskHandleBackgroundHw = NULL;
// Task and stack buffer allocation for the default/main application task!
static StaticTask_t BackgroundHwTaskBuffer;
static uint8_t BackgroundHwStackBuffer[HW_TASK_STACK_SIZE];
bool bRequestGyroMeasurement = false;
static void ApplicationInitSW(void);
static void ApplicationTask(SApplicationHandles *pAppHandles);
/* Basic level definitions */
#define BASIC_ON 0xFF
#define BASIC_OFF 0x00
#define TX_POWER_LR_20_DBM 200
#define TX_POWER_LR_14_DBM 140
#ifdef ZW_SECURITY_PROTOCOL
#define REQUESTED_SECURITY_KEYS ( SECURITY_KEY_S0_BIT | SECURITY_KEY_S2_UNAUTHENTICATED_BIT | SECURITY_KEY_S2_AUTHENTICATED_BIT | SECURITY_KEY_S2_ACCESS_BIT)
#else
#define REQUESTED_SECURITY_KEYS 0
#endif /* ZW_SECURITY_PROTOCOL */
/* Accept all incoming command classes, regardless of NIF contents. */
#define ACCEPT_ALL_CMD_CLASSES
/**
*
*/
typedef struct _S_TRANSPORT_REQUESTED_SECURITY_SETTINGS_
{
uint8_t requestedSecurityKeysBits;
} S_TRANSPORT_REQUESTED_SECURITY_SETTINGS;
static TaskHandle_t g_AppTaskHandle;
extern SSyncEvent SetDefaultCB;
extern SSyncEventArg1 LearnModeStatusCb;
/* State vars for ApplicationPoll */
static uint8_t state = 0xff;
static uint8_t retry = 0;
static uint8_t lastRetVal = 0; /* Used to store retVal for retransmissions */
uint8_t compl_workbuf[BUF_SIZE_TX]; /* Used for frames send to remote side. */
/* Queue for frames transmitted to PC - callback, ApplicationCommandHandler, ApplicationControllerUpdate... */
#if !defined(MAX_CALLBACK_QUEUE)
#define MAX_CALLBACK_QUEUE 8
#endif /* !defined(MAX_CALLBACK_QUEUE) */
#if !defined(MAX_UNSOLICITED_QUEUE)
#define MAX_UNSOLICITED_QUEUE 8
#endif /* !defined(MAX_UNSOLICITED_QUEUE) */
typedef struct _callback_element_
{
uint8_t wCmd;
uint8_t wLen;
uint8_t wBuf[BUF_SIZE_TX];
} CALLBACK_ELEMENT;
typedef struct _request_queue_
{
uint8_t requestOut;
uint8_t requestIn;
uint8_t requestCnt;
CALLBACK_ELEMENT requestQueue[MAX_CALLBACK_QUEUE];
} REQUEST_QUEUE;
REQUEST_QUEUE callbackQueue = {0};
typedef struct _request_unsolicited_queue_
{
uint8_t requestOut;
uint8_t requestIn;
uint8_t requestCnt;
CALLBACK_ELEMENT requestQueue[MAX_UNSOLICITED_QUEUE];
} REQUEST_UNSOLICITED_QUEUE;
REQUEST_UNSOLICITED_QUEUE commandQueue = {0};
eSerialAPISetupNodeIdBaseType nodeIdBaseType = SERIAL_API_SETUP_NODEID_BASE_TYPE_DEFAULT;
#if SUPPORT_ZW_WATCHDOG_START | SUPPORT_ZW_WATCHDOG_STOP
extern uint8_t bWatchdogStarted;
#endif
/* Last system wakeup reason - is set in ApplicationInit */
zpal_reset_reason_t g_eApplResetReason;
zpal_pm_handle_t radio_power_lock;
zpal_pm_handle_t io_power_lock;
SSwTimer mWakeupTimer;
bool bTxStatusReportEnabled;
static void ApplicationInitSW(void);
static void ApplicationTask(SApplicationHandles *pAppHandles);
#if (defined(SUPPORT_ZW_REQUEST_PROTOCOL_CC_ENCRYPTION) && SUPPORT_ZW_REQUEST_PROTOCOL_CC_ENCRYPTION )
static bool request_protocol_cc_encryption(SZwaveReceivePackage *pRPCCEPackage);
#endif
#ifdef ZW_CONTROLLER_BRIDGE
static void ApplicationCommandHandler_Bridge(SReceiveMulti *pReciveMulti);
#else
void ApplicationCommandHandler(void *pSubscriberContext, SZwaveReceivePackage* pRxPackage);
#endif
void ApplicationNodeUpdate(uint8_t bStatus, uint16_t nodeID, uint8_t *pCmd, uint8_t bLen);
#if SUPPORT_ZW_REMOVE_FAILED_NODE_ID
extern void ZCB_ComplHandler_ZW_RemoveFailedNodeID(uint8_t bStatus);
#endif
#if SUPPORT_ZW_REPLACE_FAILED_NODE
extern void ZCB_ComplHandler_ZW_ReplaceFailedNode(uint8_t bStatus);
#endif
#if SUPPORT_ZW_SET_SLAVE_LEARN_MODE
extern void ZCB_ComplHandler_ZW_SetSlaveLearnMode(uint8_t bStatus, uint8_t orgID, uint8_t newID);
#endif
#if SUPPORT_ZW_SET_RF_RECEIVE_MODE
extern uint8_t SetRFReceiveMode(uint8_t mode);
#endif
void set_state_and_notify(uint8_t st)
{
if (state != st)
{
xTaskNotify(g_AppTaskHandle,
1<<EAPPLICATIONEVENT_STATECHANGE,
eSetBits );
state = st;
}
}
void set_state(uint8_t st)
{
state = st;
}
/*=============================== Request ================================
** Queues request (callback) to be transmitted to remote side
**
**--------------------------------------------------------------------------*/
bool /*RET queue status (false queue full)*/
Request(
uint8_t cmd, /*IN Command */
uint8_t *pData, /*IN pointer to data */
uint8_t len /*IN Length of data */
)
{
if (callbackQueue.requestCnt < MAX_CALLBACK_QUEUE)
{
callbackQueue.requestCnt++;
callbackQueue.requestQueue[callbackQueue.requestIn].wCmd = cmd;
if (len > (uint8_t)BUF_SIZE_TX)
{
assert((uint8_t)BUF_SIZE_TX >= len);
len = (uint8_t)BUF_SIZE_TX;
}
callbackQueue.requestQueue[callbackQueue.requestIn].wLen = len;
memcpy(&callbackQueue.requestQueue[callbackQueue.requestIn].wBuf[0], pData, len);
if (++callbackQueue.requestIn >= MAX_CALLBACK_QUEUE)
{
callbackQueue.requestIn = 0;
}
xTaskNotify(g_AppTaskHandle,
1<<EAPPLICATIONEVENT_STATECHANGE,
eSetBits);
return true;
}
return false;
}
/*========================= RequestUnsolicited ===========================
** Queues request (command) to be transmitted to remote side
**
**--------------------------------------------------------------------------*/
bool /*RET queue status (false queue full)*/
RequestUnsolicited(
uint8_t cmd, /*IN Command */
uint8_t *pData, /*IN pointer to data */
uint8_t len /*IN Length of data */
)
{
taskENTER_CRITICAL();
if (commandQueue.requestCnt < MAX_UNSOLICITED_QUEUE)
{
commandQueue.requestCnt++;
commandQueue.requestQueue[commandQueue.requestIn].wCmd = cmd;
if (len > (uint8_t)BUF_SIZE_TX)
{
assert((uint8_t)BUF_SIZE_TX >= len);
len = (uint8_t)BUF_SIZE_TX;
}
commandQueue.requestQueue[commandQueue.requestIn].wLen = len;
memcpy(&commandQueue.requestQueue[commandQueue.requestIn].wBuf[0], pData, len);
if (++commandQueue.requestIn >= MAX_UNSOLICITED_QUEUE)
{
commandQueue.requestIn = 0;
}
taskEXIT_CRITICAL();
xTaskNotify(g_AppTaskHandle,
1<<EAPPLICATIONEVENT_STATECHANGE,
eSetBits);
return true;
}
taskEXIT_CRITICAL();
return false;
}
void PurgeCallbackQueue(void)
{
callbackQueue.requestOut = callbackQueue.requestIn = callbackQueue.requestCnt = 0;
}
void PurgeCommandQueue(void)
{
taskENTER_CRITICAL();
commandQueue.requestOut = commandQueue.requestIn = commandQueue.requestCnt = 0;
taskEXIT_CRITICAL();
}
/*=============================== Respond ===============================
** Send immediate respons to remote side
**
** Side effects: Sets state variable to stateTxSerial (wait for ack)
**
**--------------------------------------------------------------------------*/
void /*RET Nothing */
Respond(
uint8_t cmd, /*IN Command */
uint8_t const *pData, /*IN pointer to data */
uint8_t len /*IN Length of data */
)
{
/* If there are no data; pData == NULL and len == 0 we must set the data pointer */
/* to some dummy data. comm_interface_transmit_frame interprets NULL pointer as retransmit indication */
if (len == 0)
{
pData = (uint8_t *)0x7ff; /* Just something is not used anyway */
}
comm_interface_transmit_frame(cmd, RESPONSE, pData, len, NULL);
set_state_and_notify(stateTxSerial); /* We want ACK/NAK...*/
}
void
DoRespond(uint8_t retVal)
{
/* We need to store retVal for retransmission. */
lastRetVal = retVal;
Respond(serial_frame->cmd, &lastRetVal, 1);
}
void
DoRespond_workbuf(
uint8_t cnt
)
{
Respond(serial_frame->cmd, compl_workbuf, cnt);
}
void zaf_event_distributor_app_zw_rx(SZwaveReceivePackage *RxPackage)
{
switch (RxPackage->eReceiveType) {
case EZWAVERECEIVETYPE_SINGLE:
#ifndef ZW_CONTROLLER_BRIDGE
ApplicationCommandHandler(NULL, RxPackage);
#endif
break;
#ifdef ZW_CONTROLLER_BRIDGE
case EZWAVERECEIVETYPE_MULTI:
ApplicationCommandHandler_Bridge(&RxPackage->uReceiveParams.RxMulti);
break;
#endif // #ifdef ZW_CONTROLLER_BRIDGE
case EZWAVERECEIVETYPE_NODE_UPDATE:
ApplicationNodeUpdate(
RxPackage->uReceiveParams.RxNodeUpdate.Status,
RxPackage->uReceiveParams.RxNodeUpdate.NodeId,
RxPackage->uReceiveParams.RxNodeUpdate.aPayload,
RxPackage->uReceiveParams.RxNodeUpdate.iLength);
break;
#if (defined(SUPPORT_ZW_REQUEST_PROTOCOL_CC_ENCRYPTION) && SUPPORT_ZW_REQUEST_PROTOCOL_CC_ENCRYPTION )
case EZWAVERECEIVETYPE_REQUEST_ENCRYPTION_FRAME:
ZW_RequestEncryptionStatus(request_protocol_cc_encryption(RxPackage) ?
ERPCCEEVENT_SERIALAPI_OK : ERPCCEEVENT_SERIALAPI_FAIL);
break;
#endif
default:
break;
}
}
/**
* @brief Triggered when protocol puts a message on the ZwCommandStatusQueue.
*/
void zaf_event_distributor_app_zw_command_status(SZwaveCommandStatusPackage *Status)
{
DPRINTF("Incoming Status msg %x\r\n", Status->eStatusType);
switch (Status->eStatusType) {
case EZWAVECOMMANDSTATUS_LEARN_MODE_STATUS:
SyncEventArg1Invoke(&LearnModeStatusCb, Status->Content.LearnModeStatus.Status);
break;
case EZWAVECOMMANDSTATUS_SET_DEFAULT:
// Received when protocol is started (not implemented yet), and when SetDefault command is completed
SyncEventInvoke(&SetDefaultCB);
break;
#ifdef ZW_CONTROLLER
case EZWAVECOMMANDSTATUS_REPLACE_FAILED_NODE_ID:
ZCB_ComplHandler_ZW_ReplaceFailedNode(Status->Content.FailedNodeIDStatus.result);
break;
case EZWAVECOMMANDSTATUS_REMOVE_FAILED_NODE_ID:
ZCB_ComplHandler_ZW_RemoveFailedNodeID(Status->Content.FailedNodeIDStatus.result);
break;
case EZWAVECOMMANDSTATUS_NETWORK_MANAGEMENT:
{
LEARN_INFO_T mLearnInfo;
mLearnInfo.bStatus = Status->Content.NetworkManagementStatus.statusInfo[0];
mLearnInfo.bSource = (uint16_t)(((uint16_t)Status->Content.NetworkManagementStatus.statusInfo[1] << 8) // nodeID MSB
| (uint16_t)Status->Content.NetworkManagementStatus.statusInfo[2]); // nodeID LSB
mLearnInfo.bLen = Status->Content.NetworkManagementStatus.statusInfo[3];
mLearnInfo.pCmd = &Status->Content.NetworkManagementStatus.statusInfo[4];
ZCB_ComplHandler_ZW_NodeManagement(&mLearnInfo);
break;
}
#if SUPPORT_ZW_SET_SLAVE_LEARN_MODE
case EZWAVECOMMANDSTATUS_SET_SLAVE_LEARN_MODE:
{
uint8_t bStatus;
uint16_t orgID;
uint16_t newID;
bStatus = Status->Content.NetworkManagementStatus.statusInfo[0];
orgID = (uint16_t)((uint16_t)(Status->Content.NetworkManagementStatus.statusInfo[1] << 8) // org nodeID MSB
| Status->Content.NetworkManagementStatus.statusInfo[2]); // org nodeID LSB
newID = (uint16_t)((uint16_t)(Status->Content.NetworkManagementStatus.statusInfo[3] << 8) // new nodeID MSB
| Status->Content.NetworkManagementStatus.statusInfo[4]); // new nodeID LSB
ZCB_ComplHandler_ZW_SetSlaveLearnMode(bStatus, (uint8_t)orgID, (uint8_t)newID); // orgID and newID are always (8-bit) IDs
break;
}
#endif
#endif
default:
break;
}
}
static void
appFileSystemInit(void)
{
SAppNodeInfo_t *AppNodeInfo;
SRadioConfig_t *RadioConfig;
AppNodeInfo = zaf_get_app_node_info();
RadioConfig = zaf_get_radio_config();
/*
* Handle file system init inside Application Task
* This reduces the default stack needed during initialization
*/
if (SerialApiFileInit())
{
ReadApplicationSettings(&AppNodeInfo->DeviceOptionsMask, &AppNodeInfo->NodeType.generic, &AppNodeInfo->NodeType.specific);
ReadApplicationCCInfo(&CommandClasses.UnSecureIncludedCC.iListLength,
(uint8_t*)CommandClasses.UnSecureIncludedCC.pCommandClasses,
&CommandClasses.SecureIncludedUnSecureCC.iListLength,
(uint8_t*)CommandClasses.SecureIncludedUnSecureCC.pCommandClasses,
&CommandClasses.SecureIncludedSecureCC.iListLength,
(uint8_t*)CommandClasses.SecureIncludedSecureCC.pCommandClasses);
ReadApplicationRfRegion(&RadioConfig->eRegion);
ReadApplicationTxPowerlevel(&RadioConfig->iTxPowerLevelMax, &RadioConfig->iTxPowerLevelAdjust);
ReadApplicationMaxLRTxPwr(&RadioConfig->iTxPowerLevelMaxLR);
ReadApplicationEnablePTI(&RadioConfig->radio_debug_enable);
ReadApplicationNodeIdBaseType(&nodeIdBaseType);
}
else
{
/*
* We end up here on the first boot after initializing the flash file system
*/
zpal_radio_region_t mfgRegionConfig = REGION_UNDEFINED;
// In case of valid MfgToken, override the app default settings.
ZW_GetMfgTokenDataCountryFreq(&mfgRegionConfig);
if (true == isRfRegionValid(mfgRegionConfig))
{
RadioConfig->eRegion = mfgRegionConfig;
}
// Save the setting to flash
SaveApplicationRfRegion(RadioConfig->eRegion);
// Save the default Tx powerlevel
SaveApplicationTxPowerlevel(RadioConfig->iTxPowerLevelMax, RadioConfig->iTxPowerLevelAdjust);
// write defualt values
SaveApplicationSettings(AppNodeInfo->DeviceOptionsMask, AppNodeInfo->NodeType.generic, AppNodeInfo->NodeType.specific);
// change the 20dBm tx power setting according to the application configuration
SaveApplicationMaxLRTxPwr(RadioConfig->iTxPowerLevelMaxLR);
SaveApplicationEnablePTI(RadioConfig->radio_debug_enable);
SaveApplicationNodeIdBaseType(SERIAL_API_SETUP_NODEID_BASE_TYPE_DEFAULT);
}
ZAF_AppName_Write();
}
/*
* The below function must be implemented as hardware specific function in a separate source
* file if required.
*/
ZW_WEAK void SerialAPI_hw_psu_init(void)
{
// Do nothing
}
/*=============================== ApplicationPoll =======================
** Application poll function, handling the receiving and transmitting
** communication with the PC.
**
**--------------------------------------------------------------------------*/
static void /*RET Nothing */
ApplicationTask(SApplicationHandles* pAppHandles)
{
uint32_t unhandledEvents = 0;
SerialAPI_hw_psu_init(); // Must be invoked after the file system is initialized.
// Init
g_AppTaskHandle = xTaskGetCurrentTaskHandle();
SetTaskHandle(g_AppTaskHandle);
ZAF_setAppHandle(pAppHandles);
ZW_system_startup_SetCCSet(&CommandClasses);
AppTimerInit(EAPPLICATIONEVENT_TIMER, (void *) g_AppTaskHandle);
radio_power_lock = zpal_pm_register(ZPAL_PM_TYPE_USE_RADIO);
zpal_pm_stay_awake(radio_power_lock, 0);
io_power_lock = zpal_pm_register(ZPAL_PM_TYPE_DEEP_SLEEP);
zpal_pm_stay_awake(io_power_lock, 0);
zaf_event_distributor_init();
set_state_and_notify(stateStartup);
// Wait for and process events
DPRINT("SerialApi Event processor Started\r\n");
for(;;) {
unhandledEvents = zaf_event_distributor_distribute();
if (0 != unhandledEvents) {
DPRINTF("Unhandled Events: 0x%08lx\n", unhandledEvents);
#ifdef UNIT_TEST
return;
#endif
}
}
}
static void SerialAPICommandHandler(void)
{
const bool handler_invoked = invoke_cmd_handler(serial_frame);
if (!handler_invoked)
{
/* TODO - send a "Not Supported" respond frame */
/* UNKNOWN - just drop it */
set_state_and_notify(stateIdle);
}
}
static void SerialAPIStateHandler(void)
{
comm_interface_parse_result_t conVal;
/* ApplicationPoll is controlled by a statemachine with the four states:
stateIdle, stateFrameParse, stateTxSerial, stateCbTxSerial.
stateIdle: If there is anything to transmit do so. -> stateCbTxSerial
If not, check if anything is received. -> stateFrameParse
If neither, stay in the state
Note: frames received while we are transmitting are lost
and must be retransmitted by PC
stateFrameParse: Parse received frame.
If the request has no response -> stateIdle
If there is an immediate response send it. -> stateTxSerial
stateTxSerial: Waits for ack on responses send in stateFrameParse.
Retransmit frame as needed.
-> stateIdle
stateCbTxSerial: Waits for ack on requests send in stateIdle
(callback, ApplicationCommandHandler etc).
Retransmit frame as needed and remove from callbackqueue when done.
-> stateIdle
stateAppSuspend: Added for the uzb suspend function. The resume is through the suspend signal goes high in UZB stick
The wakeup from deep sleep suspend causes system reboot
*/
{
switch (state)
{
case stateStartup:
{
ApplicationInitSW();
SetRFReceiveMode(1);
set_state_and_notify(stateIdle);
}
break;
case stateIdle:
{
/* Check if there is anything to transmit. If so do it */
if (callbackQueue.requestCnt)
{
comm_interface_transmit_frame(
callbackQueue.requestQueue[callbackQueue.requestOut].wCmd,
REQUEST,
(uint8_t *)callbackQueue.requestQueue[callbackQueue.requestOut].wBuf,
callbackQueue.requestQueue[callbackQueue.requestOut].wLen,
NULL
);
set_state_and_notify(stateCallbackTxSerial);
/* callbackCnt decremented when frame is acknowledged from PC - or timed out after retries */
}
else
{
/* Check if there is anything to transmit. If so do it */
if (commandQueue.requestCnt)
{
comm_interface_transmit_frame(
commandQueue.requestQueue[commandQueue.requestOut].wCmd,
REQUEST,
(uint8_t *)commandQueue.requestQueue[commandQueue.requestOut].wBuf,
commandQueue.requestQueue[commandQueue.requestOut].wLen,
NULL
);
set_state_and_notify(stateCommandTxSerial);
/* commandCnt decremented when frame is acknowledged from PC - or timed out after retries */
}
else
{
/* Nothing to transmit. Check if we received anything */
if (comm_interface_parse_data(true) == PARSE_FRAME_RECEIVED)
{
/* We got a frame... */
set_state_and_notify(stateFrameParse);
}
}
}
}
break;
case stateFrameParse:
{
SerialAPICommandHandler();
}
break;
case stateTxSerial:
{
/* Wait for ACK on send respond. Retransmit as needed */
if ((conVal = comm_interface_parse_data(false)) == PARSE_FRAME_SENT)
{
/* One more RES transmitted succesfully */
retry = 0;
set_state_and_notify(stateIdle);
}
else if (conVal == PARSE_TX_TIMEOUT)
{
/* Either a NAK has been received or we timed out waiting for ACK */
if (retry++ < MAX_SERIAL_RETRY)
{
comm_interface_transmit_frame(0, REQUEST, NULL, 0, NULL); /* Retry... */
}
else
{
/* Drop RES as HOST could not be reached */
retry = 0;
set_state_and_notify(stateIdle);
}
}
/* All other states are ignored, as for now the only thing we are looking for is ACK/NAK! */
}
break;
case stateCallbackTxSerial:
{
/* Wait for ack on unsolicited event (callback etc.) */
/* Retransmit as needed. Remove frame from callbackQueue when done */
if ((conVal = comm_interface_parse_data(false)) == PARSE_FRAME_SENT)
{
/* One more REQ transmitted succesfully */
PopCallBackQueue();
}
else if (conVal == PARSE_TX_TIMEOUT)
{
/* Either a NAK has been received or we timed out waiting for ACK */
if (retry++ < MAX_SERIAL_RETRY)
{
comm_interface_transmit_frame(0, REQUEST, NULL, 0, NULL); /* Retry... */
}
else
{
/* Drop REQ as HOST could not be reached */
PopCallBackQueue();
}
}
/* All other states are ignored, as for now the only thing we are looking for is ACK/NAK! */
}
break;
case stateCommandTxSerial:
{
/* Wait for ack on unsolicited ApplicationCommandHandler event */
/* Retransmit as needed. Remove frame from comamndQueue when done */
if ((conVal = comm_interface_parse_data(false)) == PARSE_FRAME_SENT)
{
/* One more REQ transmitted succesfully */
PopCommandQueue();
}
else if (conVal == PARSE_TX_TIMEOUT)
{
/* Either a NAK has been received or we timed out waiting for ACK */
if (retry++ < MAX_SERIAL_RETRY)
{
comm_interface_transmit_frame(0, REQUEST, NULL, 0, NULL); /* Retry... */
}
else
{
/* Drop REQ as HOST could not be reached */
PopCommandQueue();
}
}
/* All other states are ignored, as for now the only thing we are looking for is ACK/NAK! */
}
break;
default:
set_state_and_notify(stateIdle);
break;
}
} // For loop - task loop
}
void
zaf_event_distributor_app_state_change(void)
{
SerialAPIStateHandler();
}
void
zaf_event_distributor_app_serial_data_rx(void)
{
SerialAPIStateHandler();
}
void
zaf_event_distributor_app_serial_timeout(void)
{
SerialAPIStateHandler();
}
void
PopCallBackQueue(void)
{
if (callbackQueue.requestCnt)
{
callbackQueue.requestCnt--;
if (++callbackQueue.requestOut >= MAX_CALLBACK_QUEUE)
{
callbackQueue.requestOut = 0;
}
}
else
{
callbackQueue.requestOut = callbackQueue.requestIn;
}
retry = 0;
set_state_and_notify(stateIdle);
}
void
PopCommandQueue(void)
{
if (commandQueue.requestCnt)
{
commandQueue.requestCnt--;
if (++commandQueue.requestOut >= MAX_UNSOLICITED_QUEUE)
{
commandQueue.requestOut = 0;
}
}
else
{
commandQueue.requestOut = commandQueue.requestIn;
}
retry = 0;
set_state_and_notify(stateIdle);
}
/**
* @brief wakeup after sleep timeout event
*
* @param pTimer Timer connected to this method
*/
void
ZCB_WakeupTimeout(__attribute__((unused)) SSwTimer *pTimer)
{
DPRINT("ZCB_WakeupTimeout\n");
}
void
zaf_event_distributor_app_proprietary(event_nc_t *event)
{
// Handles NC-specific proprietary events
EVENT_APP event_nc = (EVENT_APP) event->event;
switch (event_nc) {
case EVENT_APP_USERTASK_READY:
// Indicate that the firmware is ready by enabling the LED at low power
rgb_t color = {4, 0, 0};
set_color_buffer(color);
break;
case EVENT_APP_USERTASK_GYRO_MEASUREMENT:
if (!bRequestGyroMeasurement) {
return;
}
bRequestGyroMeasurement = false;
// A gyro measurement was requested
gyro_reading_t gyro_reading = event->payload->gyro_reading;
uint8_t cmd[8];
uint8_t i=0;
cmd[i++] = NABU_CASA_GYRO_MEASURE;
cmd[i++] = gyro_reading.x >> 8;
cmd[i++] = gyro_reading.x & 0xFF;
cmd[i++] = gyro_reading.y >> 8;
cmd[i++] = gyro_reading.y & 0xFF;
cmd[i++] = gyro_reading.z >> 8;
cmd[i++] = gyro_reading.z & 0xFF;
RequestUnsolicited(
FUNC_ID_NABU_CASA,
cmd,
i
);
break;
default:
// Nothing to do
break;
}
}
// Called when the button next to the USB port is pressed or released
void sl_button_on_change(const sl_button_t *handle)
{
if (handle->get_state(handle)) {
rgb_t color = {255, 0, 0};
set_color_buffer(color);
} else {
rgb_t color = {4, 0, 0};
set_color_buffer(color);
}
}
/*============================== ApplicationInitSW ======================
** Initialization of the Application Software
**
**--------------------------------------------------------------------------*/
void
ApplicationInitSW(void)
{
SAppNodeInfo_t *AppNodeInfo;
SRadioConfig_t *RadioConfig;
AppNodeInfo = zaf_get_app_node_info();
RadioConfig = zaf_get_radio_config();
comm_interface_init();
// FIXME load any saved node configuration and prepare to feed it to protocol
/* Do we together with the bTxStatus uint8_t also transmit a sTxStatusReport struct on ZW_SendData callback to HOST */
#if SUPPORT_SEND_DATA_TIMING
bTxStatusReportEnabled = true;
#else
bTxStatusReportEnabled = false;
#endif
#if SUPPORT_SERIAL_API_STARTUP_NOTIFICATION
/* ZW->HOST: bWakeupReason | bWatchdogStarted | deviceOptionMask | */
/* nodeType_generic | nodeType_specific | cmdClassLength | cmdClass[] */
// FIXME send startup notification via serial port if we are supposed to
SCommandClassList_t *const apCCLists[3] =
{
&CommandClasses.UnSecureIncludedCC,
&CommandClasses.SecureIncludedUnSecureCC,
&CommandClasses.SecureIncludedSecureCC
};
compl_workbuf[0] = g_eApplResetReason;
#if SUPPORT_ZW_WATCHDOG_START || SUPPORT_ZW_WATCHDOG_STOP
compl_workbuf[1] = bWatchdogStarted;
#else
compl_workbuf[1] = false;
#endif
compl_workbuf[2] = AppNodeInfo->DeviceOptionsMask;
compl_workbuf[3] = AppNodeInfo->NodeType.generic;
compl_workbuf[4] = AppNodeInfo->NodeType.specific;
compl_workbuf[5] = apCCLists[0]->iListLength;
uint8_t i = 0;
if (0 < apCCLists[0]->iListLength)
{
for (i = 0; i < apCCLists[0]->iListLength; i++)
{
compl_workbuf[6 + i] = apCCLists[0]->pCommandClasses[i];
}
}
eSerialAPIStartedCapabilities capabilities = 0;
if (ZAF_isLongRangeRegion(RadioConfig->eRegion))
capabilities = SERIAL_API_STARTED_CAPABILITIES_L0NG_RANGE;
compl_workbuf[6 + i] = capabilities;
uint32_t zpal_reset_info = 0;
if (ZPAL_STATUS_OK != zpal_retention_register_read(ZPAL_RETENTION_REGISTER_RESET_INFO, &zpal_reset_info))
{
DPRINT("ERROR while reading the reset information\n");
Request(FUNC_ID_SERIAL_API_STARTED, compl_workbuf, 7 + i);
}
else
{
compl_workbuf[7 + i] = (uint8_t)(zpal_reset_info >> 24);
compl_workbuf[8 + i] = (uint8_t)(zpal_reset_info >> 16);
compl_workbuf[9 + i] = (uint8_t)(zpal_reset_info >> 8);
compl_workbuf[10 + i] = (uint8_t)zpal_reset_info;
DPRINTF("zpal_reset_reason: %u\n", zpal_reset_info);
Request(FUNC_ID_SERIAL_API_STARTED, compl_workbuf, 11 + i);
}
#endif /* #if SUPPORT_STARTUP_NOTIFICATION */
AppTimerDeepSleepPersistentRegister(&mWakeupTimer, false, ZCB_WakeupTimeout); // register for event jobs timeout event
}
/*============================== ApplicationInit ======================
** Init UART and setup port pins for LEDs
**
**--------------------------------------------------------------------------*/
ZW_APPLICATION_STATUS
ApplicationInit(
zpal_reset_reason_t eResetReason)
{
// enable the watchdog at init of application
zpal_enable_watchdog(true);
// Serial API can control hardware with information
// set in the file system therefore it should be the first
// step in the Initialization
appFileSystemInit();
#if (!defined(SL_CATALOG_SILICON_LABS_ZWAVE_APPLICATION_PRESENT) && !defined(UNIT_TEST))
/* This preprocessor statement can be deleted from the source code */
app_hw_init();
#endif
/* g_eApplResetReason now contains lastest System Reset reason */
g_eApplResetReason = eResetReason;
#ifdef DEBUGPRINT
static uint8_t m_aDebugPrintBuffer[96];
DebugPrintConfig(m_aDebugPrintBuffer, sizeof(m_aDebugPrintBuffer), zpal_debug_output);
DebugPrintf("ApplicationInit eResetReason = %d\n", eResetReason);
ZAF_PrintAppInfo();
#endif
// Initialize NC-specific hardware
initWs2812();
initqma6100p();
/*************************************************************************************
* CREATE USER TASKS - ZW_ApplicationRegisterTask() and ZW_UserTask_CreateTask()
*************************************************************************************
* Register the main APP task function.
*
* ATTENTION: This function is the only task that can call ZAF API functions!!!
* Failure to follow guidelines will result in undefined behavior.
*
* Furthermore, this function is the only way to register Event Notification
* Bit Numbers for associating to given event handlers.
*
* ZW_UserTask_CreateTask() can be used to create additional tasks.
* @see zwave_soc_sensor_pir example for more info.
*************************************************************************************/
__attribute__((unused)) bool bWasTaskCreated = ZW_ApplicationRegisterTask(
ApplicationTask,
EAPPLICATIONEVENT_ZWRX,
EAPPLICATIONEVENT_ZWCOMMANDSTATUS,
zaf_get_protocol_config()
);
assert(bWasTaskCreated);
// Interact with the hardware in a background task
ZW_UserTask_Buffer_t bgHwTaskBuffer;
bgHwTaskBuffer.taskBuffer = &BackgroundHwTaskBuffer;
bgHwTaskBuffer.stackBuffer = BackgroundHwStackBuffer;
bgHwTaskBuffer.stackBufferLength = HW_TASK_STACK_SIZE;
// Create the task setting-structure!
ZW_UserTask_t task;
task.pTaskFunc = (TaskFunction_t)NC_UserTask_Hardware;
task.pTaskName = "DataAcqu";
task.pUserTaskParam = NULL; // We pass nothing here, as the EventHelper is already initialized and can be used for task IPC!
task.priority = USERTASK_PRIORITY_NORMAL;
task.taskBuffer = &bgHwTaskBuffer;
// Create the task!
ZW_UserTask_CreateTask(&task, &m_xTaskHandleBackgroundHw);
return (APPLICATION_RUNNING); /*Return false to enter production test mode*/