-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcodes.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 3.
1613 lines (1613 loc) · 97.7 KB
/
codes.csv
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
# Contents Copyright (C) Laird PLC
[General]
512="GENERIC_FAIL,There is a generic error whilst attempting to store a string due to its length."
513="MALLOC_FAIL,An error occured whilst trying to allocate memory, there is insufficient memory on the device for this operation."
514="NULL_POINTER,A null pointer was returned, there will be a problem whilst running this application."
515="TIMEOUT,A timeout has occured."
516="CODE_TOBE_WRITTEN,This function has not yet been implemented."
517="RESOURCE_FULL,"
518="RESOURCE_EMPTY,"
519="RESOURCE_DELETED,"
520="ACCESS_DENIED,"
521="INCORRECT_MODE,The mode of the device does not allow you to perform this action, this is most commonly seen when the filesystem is full and a download is initiated, use 'atz' to reset the module and try again."
522="EOF,"
523="OPEN_FAIL,"
524="INVALID_HANDLE,An invalid handle was provided to a timer start function."
525="IGNORED,"
526="PARAM_CLIPPED,A parameter supplied was too long and only a portion of it has been read/stored, using a shorter parameter will fix this."
527="NOT_IMPLEMENTED,The function being used is not implemented on the device or its current firmware revision. Please check the device specific manual for further details."
528="INVALID_KEY_SIZE,"
529="INVALID_PARAM,A parameter supplied is not valid, for example if a configuration key accepts 0= 1 or 2 and 5 was supplied, this error will be emitted."
530="INVALID_LICENCE,The license code for your module is not valid, as a result device functionality is severely limited until a valid license is entered to the module."
531="INVALID_KEYID,The provided key is not valid."
532="INVALID_KEYVALUE,The provided value to set for this key is not valid."
1024="TOK_FILE_READ_ERROR_moved_to_TKS,"
1025="TOK_SCRIPTNAME_TOO_LONG,The filename of an application being downloaded is too long,to download to the device the name will need to be shortened."
1026="TOK_PCODE_WRITE_OVERRUN,"
1027="TOK_PCODE_WRITE_ERROR,"
1028="TOK_UNTERMINATED_STRING,A string variable supplied was not properly terminated, strings must be between double quotes at both ends e.g. \"test\"."
1029="TOK_UNKNOWN_KEYWORD,"
1030="TOK_NOT_PRIMARY_KEYWORD,"
1031="TOK_INCOMPLETE_STATEMENT,"
1032="TOK_NOT_ARRAY_BRACKET,"
1033="TOK_MISSING_NAME,"
1034="TOK_VARIABLE_NAME_IS_KEYWORD,"
1035="TOK_VARIABLE_NAME_TOO_LONG,"
1036="TOK_ILLEGAL_NAME,"
1037="TOK_UNKNOWN_VARIABLE_TYPE,"
1038="TOK_VARIABLE_UNKNOWN_moved_to_TKS,"
1039="TOK_FILE_SEEK_ERROR,"
1040="TOK_ARRAY_INDEX_TOO_LARGE,The specific index in an array is too large, please check the device manual for the array size limit."
1041="TOK_INVALID_CONSTANT_CHAR,"
1042="TOK_ARRAY_INDEX_NEGATIVE,An array cannot have a negative index."
1043="TOK_ARRAY_INDEX_0_OR_1"
1044="TOK_ARRAY_NOT_ALLOWED,"
1045="TOK_MISSING_CLOSING_SQUARE_BRACKET,"
1046="TOK_NOT_END_OF_STATEMENT,"
1047="TOK_UNEXPECTED_CLOSE_BRACKET,"
1048="TOK_MISSING_OPEN_BRACKET,"
1049="TOK_MISSING_CLOSE_BRACKET,"
1050="TOK_BRACKET_MISMATCH,"
1051="TOK_UNEXPECTED_WHITESPACE_IN_CONST,"
1052="TOK_EMPTY,"
1053="TOK_INCOMPLETE_VAR_LIST,"
1054="TOK_LABEL_MISSING,"
1055="TOK_BUFFER_TOO_SMALL_moved_to_tks,"
1056="TOK_DUPLICATE_LABEL,"
1057="TOK_NESTED_ROUTINE_BLOCK,"
1058="TOK_ORPHAN_END_EXIT,"
1059="TOK_NAME_REDEFINITION,A previously defined function, subroutine or variable already and cannot be defined twice."
1060="TOK_PCODEFILE_INVALID_moved_to_TKS,"
1061="TOK_HEADER_POS_NOT_AS_EXPECTED,"
1062="TOK_EMPTY_EXPRESSION,"
1063="TOK_INVALID_EXPRESSION_TYPE,"
1064="TOK_CONSTANT_OUTOF_RANGE,"
1065="TOK_TYPE_MISMATCH,"
1066="TOK_VARIABLE_NOT_AN_ARRAY,A variable being manipulated is not an array but an attempt is being made to address it as one."
1067="TOK_VARIABLE_IS_ARRAY,An array being manipulated is an array but an attempt is being made to address it as a singular variable."
1068="TOK_TOO_FEW_EXPR,Too few expressions have been provided."
1069="TOK_INVALID_LINE_POSITION,The provided line position is invalid."
1070="TOK_UNEXPECTED_OPERATOR,An operator was encountered where it should not be."
1071="TOK_EXPRESSION_INCOMPLETE,An expression has not been written fully and therefore is incomplete."
1072="TOK_NOT_CONSTANT,"
1073="TOK_CONST_STACK_OVERFLOW,An overflow occured whilst pushing a constant to the cache stack."
1074="TOK_EXPRESSION_NOT_CONSTANT,"
1075="TOK_UNEXPECTED_TOKEN_IN_EXPR,In an expression, a token was encountered that should not be there."
1076="TOK_UNEXPECTED_OPERATOR_IN_EXPR,In an expression, an operator was encountered that should not be there."
1077="TOK_EXPR_TOO_COMPLEX,The expression is too complex to evaluate, try to split it into multiple expressions."
1078="TOK_EXPR_RPN_UNDERFLOW,An underflow occured whilst processing an operator in an expression."
1079="TOK_EXPR_RPN_OVERFLOW,An overflow occured whilst processing an operator in an expression."
1080="TOK_CONST_EXPR_ERROR,"
1081="TOK_ARRINDEX_OUTOF_RANGE,An array was addressed out of its defined range."
1082="TOK_VAR_MEMSPACE_OVERFLOW,An overflow occured whilst adding an additional variable (too many variables)."
1083="TOK_TOKEN_IS_NOT_SUBROUTINE,A token was encountered that is not a subroutine."
1084="TOK_MISSING_COMMA,A token was encountered that is missing a comma."
1085="TOK_MISSING_EQUAL,A token was encountered that is missing an equals expression."
1086="TOK_MISSING_OPEN_SQUARE_BRACKET,A token was encountered that is missing an open bracked ({)."
1087="TOK_UNKNOWN_VARTYPE_INBUILTIN,"
1088="TOK_VARIABLE_EXPECTED,A variable was expected but was not found."
1089="TOK_INVALID_STRING,The string provided is not valid."
1090="TOK_UNEXPECTED_ARRAY,An array handle was provided where it was not expected."
1091="TOK_CANNOT_END_IN_ROUTINE_BLOCK,"
1092="TOK_BUILTIN_FNC_LHS_NOTALLOWED,A function cannot be assigned to an expression, a variable must be assigned to the return of a function."
1093="TOK_FUNCTION_MUST_RETURN_TYPE,"
1094="TOK_TOKEN_IS_NOT_FUNCTION,The token encountered is not a valid function."
1095="TOK_UNKNOWN_TOKENISER_CMD,"
1096="TOK_UNEXPECTED_TOKEN_IN_CMD,There is an unexpected token in the command."
1097="TOK_INVALID_TOKENISER_CMD,"
1098="TOK_UNKNOWN_TOKENISER_CMDID,"
1099="TOK_INVALID_TOKENISER_CMDVAL,"
1100="TOK_MISSING_THEN,The expression is missing its 'then' term, e.g. if (var -- 1) then...."
1101="TOK_IF_NESTING_OVERFLOW,An overflow occured whilst returning from an IF statement."
1102="TOK_IF_NESTING_UNDERFLOW,An underflow occured whilst returning from an IF statement."
1103="TOK_OPEN_CODE_BLOCK,"
1104="TOK_ROUTINE_LOCATION,"
1105="TOK_BLOCK_END_MISMATCH,"
1106="TOK_INVALID_EVENT_NUMBER,"
1107="TOK_UNKNOWN_EVENTFUNC,"
1108="TOK_INCOMPATIBLE_ROUTINE,"
1109="TOK_SYNTAX_ERROR,There is a syntax error that prevents the application from being compiled."
1110="TOK_UNEXPECTED_BREAK,There is an unexpected break command where it was not expected."
1111="TOK_UNEXPECTED_CONTINUE,There is an unexpected continue command where it was not expected."
1112="TOK_EXPECTED_TO_OR_DOWNTO,"
1113="TOK_EXPECTING_STEP,A 'step' command call was not found when it was expected."
1114="TOK_VARINDEX_NOT_ALLOWED,"
1115="TOK_LOCAL_SIMPLE_FRAME_OVERFLOW,"
1116="TOK_LOCAL_COMPLEX_FRAME_OVERFLOW,"
1117="TOK_DIVIDE_BY_0_IN_CONST_EXPR,An attempt to divide by 0 was found in a constant."
1118="TOK_EXPECTED_ENDSUB,An 'endsub' command call was not found when it was expected."
1119="TOK_EXPECTED_ENDFUNC,An 'endfunc' command call was not found when it was expected."
1120="TOK_EXPECTED_EXITSUB,An 'exitsub' command call was not found when it was expected."
1121="TOK_EXPECTED_EXITFUNC,An 'exitfunc' command call was not found when it was expected."
1122="TOK_MISSING_CASE_ELSE,A 'case else' command call was not found when it was expected."
1123="TOK_UNEXPECTED_CASE,An unexpected case command call was found when it was not expected."
1124="TOK_RANGE_ERROR,"
1125="TOK_ILLEGAL_PRINT_WIDTH,"
1126="TOK_DISK_FULL,"
1127="TOK_FP_NULL_moved_to_TKS,"
1128="TOK_MISSING_CASE_XX,"
1129="TOK_ILLEGAL_CASE_RANGE,"
1130="TOK_EXPRESSION_NOT_TYPED,"
1131="TOK_IS_SUBROUTINE,"
1132="TOK_SUBROUTINE_IN_EXPR,"
1133="TOK_VALUE_OUT_OF_BOUND,"
1134="TOK_UNKNOWN_SYMBOL,"
1135="TOK_EMPTY_STRING,"
1136="TOK_NOT_BUILTIN_ROUTINE,"
1137="TOK_CHANNEL_NOT_ALLOWED,"
1138="TOK_UNKNOWN_ERRHANDLER,"
1139="TOK_INVALID_FILENAME,"
1140="TOK_CANNOT_REOPEN,"
1141="TOK_FILEWRITE_TRUNCATED_moved_to_TKS,"
1142="TOK_INVALID_APP_PARM,"
1143="TOK_NOT_VALID_moved_to_TKS,"
1144="TOK_CHANNEL_MISSING,"
1145="TOK_CASE_DUPLICATE,There are at least 2 case types with the same match."
1146="TOK_FILE_OPEN_ERROR,"
1147="TOK_HASH_MISMATCH,"
1148="TOK_TO_BE_CODED,"
1149="TOK_UNEXPECTED_TOKEN_IN_VARDEC,"
1150="TOK_UNEXPECTED_BYXXX,"
1151="TOK_NAME_DUPLICATEorCOLLISION,This token name already exists or a CRC collision has occured, please rename the variable and try again."
1536="RUN_NONFATAL,A non-fatal runtime error has occured."
1537="RUN_INDEX_TOO_LARGE,The array index provided is too large for the array."
1538="RUN_DIVIDE_BY_0=An attempt was made to divide a number by 0."
1539="RUN_CONTINUE,"
1540="RUN_STRING_ODDSIZE,The string provided is an odd size and is not valid."
1541="RUN_STRING_TOOLONG,The string provided is too long and is not valid."
1542="RUN_INDEX_NEGATIVE,An array cannot have a negative index."
1543="RUN_INV_PARM_1,The first parameter supplied to the function is not valid."
1544="RUN_INV_PARM_2,The second parameter supplied to the function is not valid."
1545="RUN_INV_PARM_3,The third parameter supplied to the function is not valid."
1546="RUN_INV_PARM_4,The forth parameter supplied to the function is not valid."
1547="RUN_INV_PARM_5,The fifth parameter supplied to the function is not valid."
1548="RUN_INV_PARM_6,The sixth parameter supplied to the function is not valid."
1549="RUN_INV_PARM_7,The seventh parameter supplied to the function is not valid."
1550="RUN_INV_PARM_8,The eigth parameter supplied to the function is not valid."
1551="RUN_INV_PARM_9,The ninth parameter supplied to the function is not valid."
1552="RUN_INV_PARM_10,The tenth parameter supplied to the function is not valid."
1553="RUN_INV_PARM_11,The eleventh parameter supplied to the function is not valid."
1554="RUN_INV_PARM_12,The twelth parameter supplied to the function is not valid."
1555="RUN_INV_PARM_13,The thirteenth parameter supplied to the function is not valid."
1556="RUN_INV_PARM_14,The fourteenth parameter supplied to the function is not valid."
1557="RUN_INV_PARM_15,The fifteenth parameter supplied to the function is not valid."
1558="RUN_INV_PARM_16,The sixteenth parameter supplied to the function is not valid."
1664="RUN_NONFATAL_TAR,There has been a non-fatal error."
1665="NON-FATAL TAR ERROR 0x01 (1),There has been a non-fatal error."
1666="NON-FATAL TAR ERROR 0x02 (2),There has been a non-fatal error."
1667="NON-FATAL TAR ERROR 0x03 (3),There has been a non-fatal error."
1668="NON-FATAL TAR ERROR 0x04 (4),There has been a non-fatal error."
1669="NON-FATAL TAR ERROR 0x05 (5),There has been a non-fatal error."
1670="NON-FATAL TAR ERROR 0x06 (6),There has been a non-fatal error."
1671="NON-FATAL TAR ERROR 0x07 (7),There has been a non-fatal error."
1672="NON-FATAL TAR ERROR 0x08 (8),There has been a non-fatal error."
1673="NON-FATAL TAR ERROR 0x09 (9),There has been a non-fatal error."
1674="NON-FATAL TAR ERROR 0x0A (10),There has been a non-fatal error."
1675="NON-FATAL TAR ERROR 0x0B (11),There has been a non-fatal error."
1676="NON-FATAL TAR ERROR 0x0C (12),There has been a non-fatal error."
1677="NON-FATAL TAR ERROR 0x0D (13),There has been a non-fatal error."
1678="NON-FATAL TAR ERROR 0x0E (14),There has been a non-fatal error."
1679="NON-FATAL TAR ERROR 0x0F (15),There has been a non-fatal error."
1680="NON-FATAL TAR ERROR 0x10 (16),There has been a non-fatal error."
1681="NON-FATAL TAR ERROR 0x11 (17),There has been a non-fatal error."
1682="NON-FATAL TAR ERROR 0x12 (18),There has been a non-fatal error."
1683="NON-FATAL TAR ERROR 0x13 (19),There has been a non-fatal error."
1684="NON-FATAL TAR ERROR 0x14 (20),There has been a non-fatal error."
1685="NON-FATAL TAR ERROR 0x15 (21),There has been a non-fatal error."
1686="NON-FATAL TAR ERROR 0x16 (22),There has been a non-fatal error."
1687="NON-FATAL TAR ERROR 0x17 (23),There has been a non-fatal error."
1688="NON-FATAL TAR ERROR 0x18 (24),There has been a non-fatal error."
1689="NON-FATAL TAR ERROR 0x19 (25),There has been a non-fatal error."
1690="NON-FATAL TAR ERROR 0x1A (26),There has been a non-fatal error."
1691="NON-FATAL TAR ERROR 0x1B (27),There has been a non-fatal error."
1692="NON-FATAL TAR ERROR 0x1C (28),There has been a non-fatal error."
1693="NON-FATAL TAR ERROR 0x1D (29),There has been a non-fatal error."
1694="NON-FATAL TAR ERROR 0x1E (30),There has been a non-fatal error."
1695="NON-FATAL TAR ERROR 0x1F (31),There has been a non-fatal error."
1696="NON-FATAL TAR ERROR 0x20 (32),There has been a non-fatal error."
1697="NON-FATAL TAR ERROR 0x21 (33),There has been a non-fatal error."
1698="NON-FATAL TAR ERROR 0x22 (34),There has been a non-fatal error."
1699="NON-FATAL TAR ERROR 0x23 (35),There has been a non-fatal error."
1700="NON-FATAL TAR ERROR 0x24 (36),There has been a non-fatal error."
1701="NON-FATAL TAR ERROR 0x25 (37),There has been a non-fatal error."
1702="NON-FATAL TAR ERROR 0x26 (38),There has been a non-fatal error."
1703="NON-FATAL TAR ERROR 0x27 (39),There has been a non-fatal error."
1704="NON-FATAL TAR ERROR 0x28 (40),There has been a non-fatal error."
1705="NON-FATAL TAR ERROR 0x29 (41),There has been a non-fatal error."
1706="NON-FATAL TAR ERROR 0x2A (42),There has been a non-fatal error."
1707="NON-FATAL TAR ERROR 0x2B (43),There has been a non-fatal error."
1708="NON-FATAL TAR ERROR 0x2C (44),There has been a non-fatal error."
1709="NON-FATAL TAR ERROR 0x2D (45),There has been a non-fatal error."
1710="NON-FATAL TAR ERROR 0x2E (46),There has been a non-fatal error."
1711="NON-FATAL TAR ERROR 0x2F (47),There has been a non-fatal error."
1712="NON-FATAL TAR ERROR 0x30 (48),There has been a non-fatal error."
1713="NON-FATAL TAR ERROR 0x31 (49),There has been a non-fatal error."
1714="NON-FATAL TAR ERROR 0x32 (50),There has been a non-fatal error."
1715="NON-FATAL TAR ERROR 0x33 (51),There has been a non-fatal error."
1716="NON-FATAL TAR ERROR 0x34 (52),There has been a non-fatal error."
1717="NON-FATAL TAR ERROR 0x35 (53),There has been a non-fatal error."
1718="NON-FATAL TAR ERROR 0x36 (54),There has been a non-fatal error."
1719="NON-FATAL TAR ERROR 0x37 (55),There has been a non-fatal error."
1720="NON-FATAL TAR ERROR 0x38 (56),There has been a non-fatal error."
1721="NON-FATAL TAR ERROR 0x39 (57),There has been a non-fatal error."
1722="NON-FATAL TAR ERROR 0x3A (58),There has been a non-fatal error."
1723="NON-FATAL TAR ERROR 0x3B (59),There has been a non-fatal error."
1724="NON-FATAL TAR ERROR 0x3C (60),There has been a non-fatal error."
1725="NON-FATAL TAR ERROR 0x3D (61),There has been a non-fatal error."
1726="NON-FATAL TAR ERROR 0x3E (62),There has been a non-fatal error."
1727="NON-FATAL TAR ERROR 0x3F (63),There has been a non-fatal error."
1728="NON-FATAL TAR ERROR 0x40 (64),There has been a non-fatal error."
1729="NON-FATAL TAR ERROR 0x41 (65),There has been a non-fatal error."
1730="NON-FATAL TAR ERROR 0x42 (66),There has been a non-fatal error."
1731="NON-FATAL TAR ERROR 0x43 (67),There has been a non-fatal error."
1732="NON-FATAL TAR ERROR 0x44 (68),There has been a non-fatal error."
1733="NON-FATAL TAR ERROR 0x45 (69),There has been a non-fatal error."
1734="NON-FATAL TAR ERROR 0x46 (70),There has been a non-fatal error."
1735="NON-FATAL TAR ERROR 0x47 (71),There has been a non-fatal error."
1736="NON-FATAL TAR ERROR 0x48 (72),There has been a non-fatal error."
1737="NON-FATAL TAR ERROR 0x49 (73),There has been a non-fatal error."
1738="NON-FATAL TAR ERROR 0x4A (74),There has been a non-fatal error."
1739="NON-FATAL TAR ERROR 0x4B (75),There has been a non-fatal error."
1740="NON-FATAL TAR ERROR 0x4C (76),There has been a non-fatal error."
1741="NON-FATAL TAR ERROR 0x4D (77),There has been a non-fatal error."
1742="NON-FATAL TAR ERROR 0x4E (78),There has been a non-fatal error."
1743="NON-FATAL TAR ERROR 0x4F (79),There has been a non-fatal error."
1744="NON-FATAL TAR ERROR 0x50 (80),There has been a non-fatal error."
1745="NON-FATAL TAR ERROR 0x51 (81),There has been a non-fatal error."
1746="NON-FATAL TAR ERROR 0x52 (82),There has been a non-fatal error."
1747="NON-FATAL TAR ERROR 0x53 (83),There has been a non-fatal error."
1748="NON-FATAL TAR ERROR 0x54 (84),There has been a non-fatal error."
1749="NON-FATAL TAR ERROR 0x55 (85),There has been a non-fatal error."
1750="NON-FATAL TAR ERROR 0x56 (86),There has been a non-fatal error."
1751="NON-FATAL TAR ERROR 0x57 (87),There has been a non-fatal error."
1752="NON-FATAL TAR ERROR 0x58 (88),There has been a non-fatal error."
1753="NON-FATAL TAR ERROR 0x59 (89),There has been a non-fatal error."
1754="NON-FATAL TAR ERROR 0x5A (90),There has been a non-fatal error."
1755="NON-FATAL TAR ERROR 0x5B (91),There has been a non-fatal error."
1756="NON-FATAL TAR ERROR 0x5C (92),There has been a non-fatal error."
1757="NON-FATAL TAR ERROR 0x5D (93),There has been a non-fatal error."
1758="NON-FATAL TAR ERROR 0x5E (94),There has been a non-fatal error."
1759="NON-FATAL TAR ERROR 0x5F (95),There has been a non-fatal error."
1760="NON-FATAL TAR ERROR 0x60 (96) CORE_START,There has been a non-fatal error with the core start module."
1761="NON-FATAL TAR ERROR 0x61 (97) STRING_DEESCAPE,There has been a non-fatal error whilst deescaping a string."
1762="NON-FATAL TAR ERROR 0x62 (98) OUT_OF_RANGE,There has been a non-fatal error (out of range)."
1763="NON-FATAL TAR ERROR 0x63 (99) INCORRECT_MODE,There has been a non-fatal error, the device is in the wrong mode."
1764="NON-FATAL TAR ERROR 0x64 (100) OUT_OF_MEMORY,There has been a non-fatal error, the device is out of memory."
1765="NON-FATAL TAR ERROR 0x65 (101) NOT_IMPLEMENTED,There has been a non-fatal error, the function used is not implemented."
1766="NON-FATAL TAR ERROR 0x66 (102) TABLE_FULL,There has been a non-fatal error, the table is full and cannot accept more entries."
1767="NON-FATAL TAR ERROR 0x67 (103) RESOURCE_UNAVAILABLE,There has been a non-fatal error, the resource is currently unavailable."
1768="NON-FATAL TAR ERROR 0x68 (104) STRING_FAIL,There has been a non-fatal error whilst creating a string."
1769="NON-FATAL TAR ERROR 0x69 (105) INVALID_TIMER,There has been a non-fatal error, the timer used is invalid."
1770="NON-FATAL TAR ERROR 0x6A (106) INVALID_INTERVAL,There has been a non-fatal error, the interval set for a timer is invalid."
1771="NON-FATAL TAR ERROR 0x6B (107) SHAREMEM_ACCESS,There has been a non-fatal error whilst accessing shared memory."
1772="NON-FATAL TAR ERROR 0x6C (108) UART_NOT_OPEN,There has been a non-fatal error, the UART is not open."
1773="NON-FATAL TAR ERROR 0x6D (109) UART_MATCH_ERROR,There has been a non-fatal error whilst matching characters with data received from the UART."
1774="NON-FATAL TAR ERROR 0x6E (110) TIMER_NOTSTARTED,There has been a non-fatal error, a timer has not started."
1775="NON-FATAL TAR ERROR 0x6F (111) STRING_DEHEX,There has been a non-fatal error whilst dehexing a string."
1776="NON-FATAL TAR ERROR 0x70 (112) UART_NOT_OPEN_WRITE,There has been a non-fatal error, an attempt was made to write to a closed UART."
1777="NON-FATAL TAR ERROR 0x71 (113) UART_NOT_OPEN_READ,There has been a non-fatal error, an attempt was made to read from a closed UART."
1778="NON-FATAL TAR ERROR 0x72 (114) UART_NOT_OPEN_READN,There has been a non-fatal error, an attempt was made to read (using READN) from a closed UART."
1779="NON-FATAL TAR ERROR 0x73 (115) UART_NOT_OPEN_READMATCH,There has been a non-fatal error, an attempt was made to read (using READMATCH) from a closed UART."
1780="NON-FATAL TAR ERROR 0x74 (116) UART_NOT_OPEN_GETCTS,There has been a non-fatal error, an attempt was made to get the CTS status of a closed UART."
1781="NON-FATAL TAR ERROR 0x75 (117) UART_NOT_OPEN_SETRTS,There has been a non-fatal error, an attempt was made to set the RTS status of a closed UART."
1782="NON-FATAL TAR ERROR 0x76 (118) UART_NOT_OPEN_BREAK,There has been a non-fatal error, an attempt was made to issue a BREAK to a closed UART."
1783="NON-FATAL TAR ERROR 0x77 (119) UART_NOT_OPEN_FLUSH,There has been a non-fatal error, an attempt was made to flush the buffers of a closed UART."
1784="NON-FATAL TAR ERROR 0x78 (120) UART_NOT_OPEN_IOCTL,There has been a non-fatal error, an attempt was made to change the IOCTL of a closed UART."
1785="NON-FATAL TAR ERROR 0x79 (121),There has been a non-fatal error."
1786="NON-FATAL TAR ERROR 0x7A (122),There has been a non-fatal error."
1787="NON-FATAL TAR ERROR 0x7B (123),There has been a non-fatal error."
1788="NON-FATAL TAR ERROR 0x7C (124),There has been a non-fatal error."
1789="NON-FATAL TAR ERROR 0x7D (125),There has been a non-fatal error."
1790="NON-FATAL TAR ERROR 0x7E (126),There has been a non-fatal error."
1791="NON-FATAL TAR ERROR 0x7F (127),There has been a non-fatal error."
1792="RUN_FATAL,A fatal run error has occured."
1793="RUN_END,The application has finished executing."
1794="RUN_STOP,The application has been stopped."
1795="RUN_BREAKPOINT,A breakpoint in the application has been encountered and program execution is paused."
1796="RUN_UNDEFINED_PCODE,An undefined PCode was encountered whilst running the application."
1797="RUN_NOT_DIRECT_ADDRESSABLE,An attempt was made to directly access memory which is not allowed."
1798="RUN_INVALID_CONTEXT,"
1799="RUN_CORRUPT_FILE,The specified file cannot run because it is corrupt."
1800="RUN_UNKNOWN_VAR_TYPE,The variable type is not known."
1801="RUN_UNKNOWN_VAR_SPACE,"
1802="RUN_INVALID_VAR_OFFSET,"
1803="RUN_SUPERSPACE_MISSING,"
1804="RUN_VERSION_MISMATCH,There is a version mismatch between the file try to execute and the firmware version, please recompile and download this program to the device using the correct XCompiler."
1805="RUN_NOGLOBALS_TO_PROMOTE,"
1806="RUN_SIMPLESTACK_OVERFLOW,An overflow occured whilst running the application."
1807="RUN_SIMPLESTACK_UNDERFLOW,An underflow occured whilst running the application."
1808="RUN_COMPLEXSTACK_OVERFLOW,An overflow occured whilst running the application."
1809="RUN_COMPLEXSTACK_UNDERFLOW,An underflow occured whilst running the application."
1810="RUN_CANNOT_DEREFERENCE,"
1811="RUN_USER_RTN_NEST_OVERFLOW,An overflow occured whilst returning from a function."
1812="RUN_USER_RTN_NEST_UNDERFLOW,An underflow occured whilst returning from a function."
1813="RUN_SIMPLE_LOCALFRAME_OVERFLOW,"
1814="RUN_COMPLEX_LOCALFRAME_OVERFLOW,"
1815="RUN_TYPE_MISMATCH,"
1816="RUN_REFTYPE_EXPECTED,"
1817="RUN_UNKNOWN_OPERATION,"
1818="RUN_UNTESTED_PCODE,The PCODE used here has not been tested."
1819="RUN_CANNOT_RESUME,Execution cannot resume from this point."
1820="RUN_CACHE_FAIL,There is a problem reading data from the cache."
1821="RUN_FILE_READ_ERROR,An error was encountered whilst the file was being read."
1822="RUN_ABORTED_FILE,The file is empty, too large or was marked as aborted."
1823="RUN_UNEXPECTED_END,The file unexpectidly ended before an end was expected."
1824="RUN_TOCODE,"
1825="RUN_RUNSCRIPT_not_used_anymore,"
1826="RUN_CANNOT_NEST_RUNSCRIPT,"
1827="RUN_MEMACCESS_EXCEPTION,There was an exception trying to access a part of memory."
1828="RUN_AUTORUN_ERROR,There is an error with the autorun script, which has not executed."
1829="RUN_INVALID_TIMER,"
1830="RUN_RUNSCRIPT_BLOCK,"
1831="RUN_RUNSCRIPT_ASYNC,"
1832="RUN_SCRIPT_ASYNC_NOFILE,"
1833="RUN_APPID_INVALID,The application ID of a sub-file is not valid."
1834="RUN_SINGLE_APP_ONLY,"
1835="RUN_APP_CONTEXT_BUSY,"
1836="RUN_NOT_PARENTAPP,"
1837="RUN_RESOURCE_FAIL,"
1838="RUN_FACTORY_CLONE_FAIL,"
1839="RUN_RUNASYNC_DISABLED,"
1840="RUN_RUNASYNC_KILLED,"
1841="RUN_FUNC_DISABLED,"
1842="RUN_ILLEGAL_LOGCHAN,"
1843="RUN_INV_MSG_QUEUE,"
1844="RUN_INV_MSG_ID,"
1845="RUN_NO_MSG_HANDLER,"
1846="RUN_MSGQUEUE_FULL,"
1847="RUN_NO_SPI_HANDLES,"
1848="RUN_INV_SPI_PIO,"
1849="RUN_INV_SPI_MODE,"
1850="RUN_INV_SPI_HANDLE,"
1851="RUN_INV_SPI_IOCTL,"
1852="RUN_NO_FREE_HANDLES,"
1853="RUN_INV_CIRCBUF_HANDLE,"
1854="RUN_INV_ADC_GAIN,The supplied ADC gain is not valid."
1855="RUN_INV_ADC_RESOLUTION,The supplied ADC resolution is not valid."
1856="RUN_INV_ADC_ACQUIRE_TIME,The supplied ADC acquisition time is not valid."
1854="RUN_COMPILER_MISMATCH,There is a mismatch between the compiler used to generate this script and the firmware version, please recompile the application using the correct XCompiler."
1919="RUN_COMPILER_MISMATCH,There is a mismatch between the compiler used to generate this script and the firmware version, please recompile the application using the correct XCompiler."
1920="RUN_FATAL_TAR,There has been a fatal error."
1921="FATAL TAR ERROR = 0x01 (1),There has been a fatal error."
1922="FATAL TAR ERROR = 0x02 (2),There has been a fatal error."
1923="FATAL TAR ERROR = 0x03 (3),There has been a fatal error."
1924="FATAL TAR ERROR = 0x04 (4),There has been a fatal error."
1925="FATAL TAR ERROR = 0x05 (5),There has been a fatal error."
1926="FATAL TAR ERROR = 0x06 (6),There has been a fatal error."
1927="FATAL TAR ERROR = 0x07 (7),There has been a fatal error."
1928="FATAL TAR ERROR = 0x08 (8),There has been a fatal error."
1929="FATAL TAR ERROR = 0x09 (9),There has been a fatal error."
1930="FATAL TAR ERROR = 0x0A (10),There has been a fatal error."
1931="FATAL TAR ERROR = 0x0B (11),There has been a fatal error."
1932="FATAL TAR ERROR = 0x0C (12),There has been a fatal error."
1933="FATAL TAR ERROR = 0x0D (13),There has been a fatal error."
1934="FATAL TAR ERROR = 0x0E (14),There has been a fatal error."
1935="FATAL TAR ERROR = 0x0F (15),There has been a fatal error."
1936="FATAL TAR ERROR = 0x10 (16),There has been a fatal error."
1937="FATAL TAR ERROR = 0x11 (17),There has been a fatal error."
1938="FATAL TAR ERROR = 0x12 (18),There has been a fatal error."
1939="FATAL TAR ERROR = 0x13 (19),There has been a fatal error."
1940="FATAL TAR ERROR = 0x14 (20),There has been a fatal error."
1941="FATAL TAR ERROR = 0x15 (21),There has been a fatal error."
1942="FATAL TAR ERROR = 0x16 (22),There has been a fatal error."
1943="FATAL TAR ERROR = 0x17 (23),There has been a fatal error."
1944="FATAL TAR ERROR = 0x18 (24),There has been a fatal error."
1945="FATAL TAR ERROR = 0x19 (25),There has been a fatal error."
1946="FATAL TAR ERROR = 0x1A (26),There has been a fatal error."
1947="FATAL TAR ERROR = 0x1B (27),There has been a fatal error."
1948="FATAL TAR ERROR = 0x1C (28),There has been a fatal error."
1949="FATAL TAR ERROR = 0x1D (29),There has been a fatal error."
1950="FATAL TAR ERROR = 0x1E (30),There has been a fatal error."
1951="FATAL TAR ERROR = 0x1F (31),There has been a fatal error."
1952="FATAL TAR ERROR = 0x20 (32),There has been a fatal error."
1953="FATAL TAR ERROR = 0x21 (33),There has been a fatal error."
1954="FATAL TAR ERROR = 0x22 (34),There has been a fatal error."
1955="FATAL TAR ERROR = 0x23 (35),There has been a fatal error."
1956="FATAL TAR ERROR = 0x24 (36),There has been a fatal error."
1957="FATAL TAR ERROR = 0x25 (37),There has been a fatal error."
1958="FATAL TAR ERROR = 0x26 (38),There has been a fatal error."
1959="FATAL TAR ERROR = 0x27 (39),There has been a fatal error."
1960="FATAL TAR ERROR = 0x28 (40),There has been a fatal error."
1961="FATAL TAR ERROR = 0x29 (41),There has been a fatal error."
1962="FATAL TAR ERROR = 0x2A (42),There has been a fatal error."
1963="FATAL TAR ERROR = 0x2B (43),There has been a fatal error."
1964="FATAL TAR ERROR = 0x2C (44),There has been a fatal error."
1965="FATAL TAR ERROR = 0x2D (45),There has been a fatal error."
1966="FATAL TAR ERROR = 0x2E (46),There has been a fatal error."
1967="FATAL TAR ERROR = 0x2F (47),There has been a fatal error."
1968="FATAL TAR ERROR = 0x30 (48),There has been a fatal error."
1969="FATAL TAR ERROR = 0x31 (49),There has been a fatal error."
1970="FATAL TAR ERROR = 0x32 (50),There has been a fatal error."
1971="FATAL TAR ERROR = 0x33 (51),There has been a fatal error."
1972="FATAL TAR ERROR = 0x34 (52),There has been a fatal error."
1973="FATAL TAR ERROR = 0x35 (53),There has been a fatal error."
1974="FATAL TAR ERROR = 0x36 (54),There has been a fatal error."
1975="FATAL TAR ERROR = 0x37 (55),There has been a fatal error."
1976="FATAL TAR ERROR = 0x38 (56),There has been a fatal error."
1977="FATAL TAR ERROR = 0x39 (57),There has been a fatal error."
1978="FATAL TAR ERROR = 0x3A (58),There has been a fatal error."
1979="FATAL TAR ERROR = 0x3B (59),There has been a fatal error."
1980="FATAL TAR ERROR = 0x3C (60),There has been a fatal error."
1981="FATAL TAR ERROR = 0x3D (61),There has been a fatal error."
1982="FATAL TAR ERROR = 0x3E (62),There has been a fatal error."
1983="FATAL TAR ERROR = 0x3F (63),There has been a fatal error."
1984="FATAL TAR ERROR = 0x40 (64),There has been a fatal error."
1985="FATAL TAR ERROR = 0x41 (65),There has been a fatal error."
1986="FATAL TAR ERROR = 0x42 (66),There has been a fatal error."
1987="FATAL TAR ERROR = 0x43 (67),There has been a fatal error."
1988="FATAL TAR ERROR = 0x44 (68),There has been a fatal error."
1989="FATAL TAR ERROR = 0x45 (69),There has been a fatal error."
1990="FATAL TAR ERROR = 0x46 (70),There has been a fatal error."
1991="FATAL TAR ERROR = 0x47 (71),There has been a fatal error."
1992="FATAL TAR ERROR = 0x48 (72),There has been a fatal error."
1993="FATAL TAR ERROR = 0x49 (73),There has been a fatal error."
1994="FATAL TAR ERROR = 0x4A (74),There has been a fatal error."
1995="FATAL TAR ERROR = 0x4B (75),There has been a fatal error."
1996="FATAL TAR ERROR = 0x4C (76),There has been a fatal error."
1997="FATAL TAR ERROR = 0x4D (77),There has been a fatal error."
1998="FATAL TAR ERROR = 0x4E (78),There has been a fatal error."
1999="FATAL TAR ERROR = 0x4F (79),There has been a fatal error."
2000="FATAL TAR ERROR = 0x50 (80),There has been a fatal error."
2001="FATAL TAR ERROR = 0x51 (81),There has been a fatal error."
2002="FATAL TAR ERROR = 0x52 (82),There has been a fatal error."
2003="FATAL TAR ERROR = 0x53 (83),There has been a fatal error."
2004="FATAL TAR ERROR = 0x54 (84),There has been a fatal error."
2005="FATAL TAR ERROR = 0x55 (85),There has been a fatal error."
2006="FATAL TAR ERROR = 0x56 (86),There has been a fatal error."
2007="FATAL TAR ERROR = 0x57 (87),There has been a fatal error."
2008="FATAL TAR ERROR = 0x58 (88),There has been a fatal error."
2009="FATAL TAR ERROR = 0x59 (89),There has been a fatal error."
2010="FATAL TAR ERROR = 0x5A (90),There has been a fatal error."
2011="FATAL TAR ERROR = 0x5B (91),There has been a fatal error."
2012="FATAL TAR ERROR = 0x5C (92),There has been a fatal error."
2013="FATAL TAR ERROR = 0x5D (93),There has been a fatal error."
2014="FATAL TAR ERROR = 0x5E (94),There has been a fatal error."
2015="FATAL TAR ERROR = 0x5F (95),There has been a fatal error."
2016="FATAL TAR ERROR = 0x60 (96),There has been a fatal error."
2017="FATAL TAR ERROR = 0x61 (97),There has been a fatal error."
2018="FATAL TAR ERROR = 0x62 (98),There has been a fatal error."
2019="FATAL TAR ERROR = 0x63 (99),There has been a fatal error."
2020="FATAL TAR ERROR = 0x64 (100),There has been a fatal error."
2021="FATAL TAR ERROR = 0x65 (101),There has been a fatal error."
2022="FATAL TAR ERROR = 0x66 (102),There has been a fatal error."
2023="FATAL TAR ERROR = 0x67 (103),There has been a fatal error."
2024="FATAL TAR ERROR = 0x68 (104),There has been a fatal error."
2025="FATAL TAR ERROR = 0x69 (105),There has been a fatal error."
2026="FATAL TAR ERROR = 0x6A (106),There has been a fatal error."
2027="FATAL TAR ERROR = 0x6B (107),There has been a fatal error."
2028="FATAL TAR ERROR = 0x6C (108),There has been a fatal error."
2029="FATAL TAR ERROR = 0x6D (109),There has been a fatal error."
2030="FATAL TAR ERROR = 0x6E (110),There has been a fatal error."
2031="FATAL TAR ERROR = 0x6F (111),There has been a fatal error."
2032="FATAL TAR ERROR = 0x70 (112),There has been a fatal error."
2033="FATAL TAR ERROR = 0x71 (113),There has been a fatal error."
2034="FATAL TAR ERROR = 0x72 (114),There has been a fatal error."
2035="FATAL TAR ERROR = 0x73 (115),There has been a fatal error."
2036="FATAL TAR ERROR = 0x74 (116),There has been a fatal error."
2037="FATAL TAR ERROR = 0x75 (117),There has been a fatal error."
2038="FATAL TAR ERROR = 0x76 (118),There has been a fatal error."
2039="FATAL TAR ERROR = 0x77 (119),There has been a fatal error."
2040="FATAL TAR ERROR = 0x78 (120),There has been a fatal error."
2041="FATAL TAR ERROR = 0x79 (121),There has been a fatal error."
2042="FATAL TAR ERROR = 0x7A (122),There has been a fatal error."
2043="FATAL TAR ERROR = 0x7B (123),There has been a fatal error."
2044="FATAL TAR ERROR = 0x7C (124),There has been a fatal error."
2045="FATAL TAR ERROR = 0x7D (125),There has been a fatal error."
2046="FATAL TAR ERROR = 0x7E (126),There has been a fatal error."
2047="FATAL TAR ERROR = 0x7F (127),There has been a fatal error."
4096="CFG_READ_ERROR,There was an error whilst trying to read a configuration key."
4097="CFG_UNKNOWN_KEY,The specified configuration key is not valid."
4098="CFG_RECORD_TOO_SMALL,"
4099="CFG_RECORD_TOO_BIG,"
4100="CFG_INVALID_USER_KEY,The specified user configuration key is not valid."
4101="CFG_NOT_PARSING_CONFIG,"
4102="CFG_INV_LOG_KEYTYPE,There is a problem with the configuration database."
4103="CFG_INV_LOG_KEYID,"
4104="CFG_INV_LOG_SEGMENT,"
4105="CFG_NO_ACCESS_RIGHTS,"
4106="CFG_KEY_MISMATCH,"
4107="CFG_INV_PARAMETER,"
4108="CFG_PSWD_FAIL,"
4608="STR_EMPTY,The provided string is empty, configuration keys do not allow empty strings."
4609="STR_SIZE_LIMIT,"
5376="TKN_UNTERMINATED_STRING,A quote () was provided as the start of a string, but no end quote mark was found."
5377="TKN_UNEXPECTED_WHITESPACE_IN_CONST,"
5378="TKN_INVALID_CONSTANT_CHAR,"
5379="TKN_CONSTANT_TOO_BIG,The provided constant in a string is too large to be converted to an integer."
5380="TKN_END_OF_LINE,The end of a line was encountered when a constant was expected."
5381="TKN_UNEXPECTED_WHITESPACE,There was unexpected whitespace detected in a string."
5632="UWL_TYPE_MISMATCH,"
5633="UWL_UNKNOWN_VAR_TYPE,"
5634="UWL_UNKNOWN_VAR_SPACE,"
5888="IMM_INCOMPLETE_COMMAND,"
5889="IMM_PARM_NOT_STRING,"
5890="IMM_UNEXPECTED_ARGS,"
5891="IMM_PARM_NOT_INTEGER,"
5892="IMM_UNEXPECTED_TOKEN,"
5893="IMM_CONSTANT_NOT_WORD,"
5894="IMM_OUTPUT_FILE_EXISTS,"
5895="IMM_SOURCE_FILE_MISSING,"
5896="IMM_RUNCONTEXT_FAIL,"
5897="IMM_SVAR_ARGx_MISSING,"
5898="IMM_INVALID_NVR_TYPE,"
5899="IMM_INVALID_NVR_KEY,"
5900="IMM_INV_PSWRD_TYPE,"
5901="IMM_CMD_UNAVIALABLE,"
5902="IMM_INV_KEY_TYPE,"
5903="IMM_KEYTYPE_EXPECTED,"
5904="IMM_UNEXPECTED_PARM,"
5905="IMM_INV_STRING,"
5906="IMM_WRITEONLY,"
5907="IMM_KEY_PROTECTED,"
5908="IMM_INVALID_DICTIONARYID,"
5909="IMM_INVALID_DICTIONARY_KEY,"
5910="IMM_INVALID_WORM_KEY,"
5936="IMM_FUNC_UNAVAILABLE,"
6144="FSA_FILENAME_INVALID_CHR,There is an invalid character in the specified filename."
6145="FSA_FILENAME_EMPTY,The filename provided is empty."
6146="FSA_FILENAME_UNTERMINATED,The filename provided did not have a closing quote ()."
6147="FSA_FILENAME_TOO_LONG,The provided filename is too long to be stored, use a shorter filename."
6148="FSA_OPENMODE_NOTALLOWED,The provided open file type is not valid."
6149="FSA_MEDIA_FULL,"
6150="FSA_OPEN_FAIL,There was an error whilst attempting to open a file on the device."
6151="FSA_ERASE_FAIL,There was an error whilst attempting to erase a file from the device, the file may be locked or in use, append a plug (+) on the end to forcefully delete the file."
6152="FSA_NO_FREE_HANDLES,There was an error whilst opening the specified file becasue there are no free file handles available."
6153="FSA_FAIL_OPENFILE,There was an error whilst opening the specified file, it might already be open or in use."
6154="FSA_FILE_MISSING,The specified file does not exist."
6155="FSA_FFS_FULL,"
6156="FSA_RENAME_ERROR,There was an error whilst attempting to rename a file, the filename might already exist or the file might be locked."
6157="FSA_FAT_FULL,The filesystem on the device is full and there is no space for the operation to complete."
6158="FSA_FILE_CORRUPT,The specified file is corrupt and cannot be successfully read or written."
6159="FSA_SEEK_ERROR,There was an error trying to seek to the specified position in the file."
6160="FSA_TELL_ERROR,"
6161="FSA_INVALID_FILEHANDLE,A provided file handle is not valid."
6162="FSA_FILE_PERMISSIONS_GET_FAIL,Failed to get permissions of file."
6162="FSA_FILE_PERMISSIONS_SET_FAIL,Failed to set permissions of file."
6400="NVO_NO_ANCHOR,"
6401="NVO_SECTOR_FULL,This non-volotile sector is full."
6402="NVO_INVALID_SEGMENT,The specified non-volotile segment does not exist."
6403="NVO_DELETED_OBJECT_ACCESS,"
6404="NVO_NO_MORE_CHILDREN,"
6405="NVO_NO_MORE_SIBLINGS,"
6406="NVO_NO_MORE_CHANGED,"
6407="NVO_ORPHANED,"
6408="NVO_SEARCH_FAIL,No match was found in the non-volotile storage."
6409="NVO_LINK_NOT_EMPTY,The link in the non-volotile storage is not empty."
6410="NVO_FIRST_FILEDATA_MISSING,"
6411="NVO_CHANGE_NOT_ALLOWED,The specified non-volotile sector cannot be changed."
6412="NVO_WRITEOPEN_TOOMANY,There are too many non-volotile storage file handles open."
6413="NVO_OPEN_TOOMANY,There are too many non-volotile storage file handles open."
6414="NVO_FILE_EXISTS,A file with this name already exists and cannot be opened for writing."
6415="NVO_TAGTYPE_MISMATCH,"
6416="NVO_FILE_MISSING,The specified file does not exist."
6417="NVO_INVALID_FILE_HANDLE,The specified file handle is not valid."
6418="NVO_FILE_NOTOPEN,The specified file in the non-volotile storage system is not open."
6419="NVO_FILE_READOPEN,The specified data cannot be written as the file is open for reading only."
6420="NVO_FILE_POS_ERROR,The specified position in the file does not exist."
6421="NVO_FILE_TOO_BIG,The specified file is too big , the data has not been written."
6422="NVO_FILE_CORRUPT,The specified file is corrupt and cannot be read or written."
6423="NVO_OPEN_FOR_WRITE,The specified file is already open for writing and cannot be opened for reading."
6424="NVO_OBJECT_MISSING,"
6425="NVO_END_OF_OBJECT,"
6426="NVO_INV_CONFIG_ITEM_ID,"
6427="NVO_NO_CONFIG_ITEM_ID,"
6428="NVO_UNEXPECTED_TAGID,"
6429="NVO_CONFIG_ITEM_CREATE_FAIL,"
6430="NVO_CONFIG_ITEM_TOO_BIG,"
6431="NVO_SEGMENT_CORRUPT,This segment of non-volotile storage is corrupt."
6432="NVO_SEGMENT_FULL,"
6433="NVO_LOC_NOT_FREE,Unable to write to this location as it is not free."
6434="NVO_NOT_FIRST_CHILD,The provided address is not the first child."
6435="NVO_NVHEAP_SIZE_INVALID,"
6436="NVO_NVHEAP_INVALID_ID,"
6437="NVO_NVHEAP_NOFREE_BLOCKS,"
6438="NVO_NVHEAP_SEGMENT_FULL,"
6439="NVO_NVHEAP_BUSY,"
6440="NVO_NVWORM_INVALID_ID,The provided WORM ID is not valid."
6441="NVO_NVWORM_TOO_BIG,The provided WORM size is too large."
6442="NVO_NVWORM_EXISTS,The WORM segment already exists and cannot be re-created."
6443="NVO_NVWORM_SEGMENT_FULL,There is insufficient space remainging in the WORM for this operation."
6444="NVO_NVWORM_SIZE_INVALID,The size of the WORM segment is not valid."
6445="NVO_CONFIG_CORRUPT,The specified configuration key is corrupt."
6446="NVO_CONFIG_ITEM_ILLEGAL,The configuration item ID provided is not valid."
6447="NVO_FATSEGMENT_FULL,The file-system is full, therefore there is no space to create new files."
6448="NVO_SEQFILE_CORRUPT,"
6449="NVO_SEQFILE_ILLEGAL_LEN,"
6450="NVO_INVALID_STATE,"
6451="NVO_INVALID_DICTIONARYID,"
6529="NVOSF_SEGMENT_FULL,"
6530="NVOSF_FILEID_EXHAUSTED,"
6531="NVOSF_NOFREE_HANDLES,"
6532="NVOSF_BLOCK_WRITE_FAIL,"
6533="NVOSF_FILE_EXISTS,"
6534="NVOSF_INVALID_FILETYPE,"
6535="NVOSF_INVALID_HANDLE,"
6536="NVOSF_FILE_NOT_OPEN,"
6537="NVOSF_NULL_POINTER,"
6538="NVOSF_FILE_MISSING,"
6539="NVOSF_FILE_OPEN,"
6540="NVOSF_FILE_UNCAPPED,"
6541="NVOSF_NOT_FILEINFO,"
6542="NVOSF_EOF,"
6543="NVOSF_NOT_WRITE_MODE,"
6544="NVOSF_NOT_READ_MODE,"
6545="NVOSF_SECTOR_ERASE_FAIL,"
6546="NVOSF_BLOCK_TOO_BIG,"
6547="NVOSF_MALLOC_FAIL,"
6548="NVOSF_CACHE_TOO_SMALL,"
6549="NVOSF_CACHE_TOO_BIG,"
6550="NVOSF_CACHE_GRANULARITY,"
6551="NVOSF_ILLEGAL_USERDATA,"
6552="NVOSF_ILLEGAL_MODE,"
6553="NVOSF_NOTOPEN,"
6592="NVOTC_WRITE_BUSY,"
6593="NVOTC_INVALID_GROUP,"
6594="NVOTC_WRITE_CLOSED,"
6595="NVOTC_GROUP_MISMATCH,"
6596="NVOTC_KEY_EXISTS,"
6597="NVOTC_KEYOPEN_BUSY,"
6598="NVOTC_TOO_MANY_ITEMS,"
6599="NVOTC_KEY_MISSING,"
6600="NVOTC_INDEX_TOO_LARGE,"
6601="NVOTC_GROUP_NOT_OPEN,"
6602="NVOTC_INVALID_KEYID,"
6656="FDV_NOT_ACCESSIBLE,"
6657="FDV_WRITE_FAIL,There was an error whilst attempting to write to the flash device."
6658="FDV_WRITE_BLOCK_BOUND,"
6659="FDV_READ_BLOCK_BOUND,"
6660="FDV_SECTOR_ERASE_FAIL,"
6661="FDV_WRITE_TO_INV_ADDR,The specified address is not valid and so data has not been written."
6662="FDV_READ_FROM_INV_ADDR,The specified address is not valid and so data has not been read."
6663="FDV_ERASE_FAIL,"
6664="FDV_ERASE_TIMEOUT,"
6665="FDV_WRITE_TIMEOUT,"
6666="FDV_ERASE_VPP_INV,"
6667="FDV_WRITE_VPP_INV,"
6668="FDV_ERASE_PROTECTED,An attempt was made to deleted a protected part on a flash device."
6669="FDV_WRITE_PROTECTED,An attempt was made to write to a protected part on a flash device."
6670="FDV_ERASE_SEQ_ERR,"
6671="FDV_UNLOCK_FAIL,"
6672="FDV_LOCKED_DOWN,"
6673="FDV_READ_FAIL,There was an error whilst attempting to read from a flash device."
6674="FDV_READ_TIMEOUT,An operation timed out whilst attempting to read from a flash device."
6784="FDV_SOME_ERROR_APP,"
7000="CPA_OK,No error."
7001="CPA_NO_MEM,Out of memory."
7002="CPA_BAD_ARGS,Illegal arguments."
7003="CPA_PERM_DENIED,Access violation."
7004="CPA_NOT_IMPL,Feature is not implemented."
7005="CPA_NOT_FOUND,Not found."
7006="CPA_SYS_ERR,General system error."
7007="CPA_TIMEOUT,Operation timed out."
7008="CPA_INVAL,Invalid input."
7009="CPA_PERM,Operation not permitted."
7010="CPA_NOENT,No such file or directory."
7011="CPA_SRCH,No such process."
7012="CPA_INTR,Interrupted system call."
7013="CPA_IO,Input/output error."
7014="CPA_NXIO,Device not configured."
7015="CPA_FAULT,Bad address."
7016="CPA_EXIST,File exists."
7017="CPA_NODEV,Operation not supported by device."
7018="CPA_NOSPC,No space left on device."
7019="CPA_UPDATED,List changed between iterator calls."
7020="CPA_RANGE,Result too large (range error)."
8192="APP_INVALID_BRIDGE,"
8193="APP_INVALID_APPID,"
8194="APP_CONTEXT_BUSY,"
8195="APP_NOT_RUNNING,"
8196="APPCONTEXT_CORRUPT,"
8197="APP_INVALID_PARAM,"
8198="APP_ERASE_FFS_NOT_ALLOWED,Unable to erase the module filesystem, please ensure the module is wired for VSP command line mode to use this function."
8199="APP_CFGKEY_WRITE_DISALLOWED,"
9216="MSC_INVALID_STRING,A string provided was not valid."
9217="MSC_INVALID_PRIORITY,"
9218="MSC_SUBST_NOARGC,"
9219="MSC_SUBST_OVERFLOW,"
9220="MSC_CONTINUE,"
9221="MSC_SUBST_INV_CHAR,"
9222="MSC_SUBST_INV_INDEX,"
9223="MSC_DEESC_ERROR,"
9224="MSC_CONSTANT_TOO_BIG,"
9225="MSC_INVALID_CONSTANT_CHAR,"
9226="MSC_INVALID_HEXSTRING,A hex-string provided was not valid."
10752="NVW_WORM_MISSING,The module WORM is missing, please contact Laird support."
11520="PPR_NOT_OPEN,"
11521="PPR_ALREADY_OPEN,"
11522="PPR_DEFNAME_EMPTY,"
11523="PPR_MALLOC_FAIL,"
11524="PPR_DEFINE_VALUE_DIFF,"
11525="PPR_MISSING_NAME,"
11526="PPR_INVALID_DEFINE_NAME,"
11527="PPR_INVALID_DEFINE_VAL,"
11528="PPR_LINE_TOO_BIG,"
11529="PPR_EXPANSION_OVERRUN,"
11530="PPR_ABSORBED_COMMAND,"
11531="PPR_INCLUDE_FILE_MISSING,"
12032="ENC_BLOCKSIZE_ERROR,"
13824="VSF_INVALID_HANDLE,"
13825="VSF_FILE_NOT_OPEN,"
13826="VSF_NO_FREE_HANDLES,"
13827="VSF_NOT_WRITEMODE,"
13828="VSF_NOT_READMODE,"
13829="VSF_BLOCK_TOO_LARGE,"
13830="VSF_WRITE_OVERRUN,"
13831="VSF_FILE_MISSING,"
13832="VSF_EOF_DONOTUSE,"
13833="VSF_NOT_COMMITTED,"
13834="VSF_NOTHING_TO_COMMIT,"
13835="VSF_NO_FREE_SPACE,"
13836="VSF_INVALID_TYPE,"
15360="SYS_NO_SHUTDOWN_LIST,"
15361="SYS_SHUTDOWN_FAIL,"
15362="SYS_SHAREOBJ_ACCESS_ERR,"
15363="SYS_SHAREOBJ_ISFREE,"
20480="TKS_FP_NULL,"
20481="TKS_NOT_VALID,"
20482="TKS_FILEWRITE_TRUNCATED,"
20483="TKS_FILE_READ_ERROR,"
20484="TKS_PCODEFILE_INVALID,"
20485="TKS_FILE_SEEK_ERROR,"
20486="TKS_VARIABLE_UNKNOWN,"
20736="RBF_INVALID_LEN,"
20737="RBF_WRAP_BUF_FULL,"
20738="RBF_WRAP_BUF_EMPTY,"
20739="RBF_WRAP_BUF_WAS_FULL,"
20992="DRIVER_NOT_FOUND,The specified hardware device was not found."
20993="DRIVER_NOT_OPEN,The specified hardware device is not open, it needs to be opened before it can be manipulated."
20994="DRIVER_INVALID_PINS,The specified GPIO either does not exist or does not support the selected functionality."
20995="DRIVER_BAD_CONFIGPARMS,The configuration parameters for the specified hardware device are incorrect."
20996="DRIVER_FEATURE_UNAVAILABLE,This feature is not available for this hardware device."
20997="DRIVER_UNKNOWN_IOCTL,The provided GPIO line cannot be used in IOCTL functions."
20998="DRIVER_BUFFER_FULL,The specified hardware device's buffer is currently full."
20999="DRIVER_ALREADY_OPEN,An attempt was made to open a hardware device which is already open."
21000="DRIVER_UART_INV_BAUD,An attempt was made to open the UART with an invalid baud rate."
21001="DRIVER_UART_INV_PARITY,An attempt was made to open the UART with an invalid parity mode."
21002="DRIVER_UART_INV_DATABITS,An attempt was made to open the UART with an invalid number of data bits."
21003="DRIVER_UART_INV_STOPBITS,An attempt was made to open the UART with an invalid number of stop bits."
21004="DRIVER_UART_CANNOT_BE_DTE,"
21005="DRIVER_UART_CANNOT_BE_DCE,"
21006="DRIVER_UART_INV_FLOWCTRL,An attempt was made to open the UART with an invalid type of flow control."
21007="DRIVER_UART_INV_DTE_DCE,The provided UART configuration string is not valid."
21008="DRIVER_INV_OPTION_STRLEN,The provided UART configuration string is not the correct length"
21009="DRIVER_INV_TXBUFLEN,An attempt was made to open the UART with an invalid TX buffer length."
21010="DRIVER_INV_RXBUFLEN,An attempt was made to open the UART with an invalid RX buffer length."
21011="DRIVER_GENERIC_HW_ERR,There is a generic error with the hardware reported by the low level driver."
21012="DRIVER_UART_NOCTSRTS_PINS,There are no RTS/CTS pins on this UART interface, hardware flow control cannot be used."
21013="DRIVER_TIMEOUT_TOOLARGE,A timeout value provided is too large to be used."
21014="DRIVER_REPEAT_TOUT_TOOSMALL,The specified repeat timeout is too small."
21015="DRIVER_SIGNUM_INVALID,The GPIO number specified is not valid."
21016="DRIVER_SIGFUNC_NOTALLOWED,The GPIO function type cannot be used on this GPIO line."
21017="DRIVER_SIGSUBFUNC_NOTALLOWED,"
21018="DRIVER_SIG_NOTCOMPATIBLE,The specified GPIO number cannot be read."
21019="DRIVER_SIG_NOFREE_SCHEVENTS,"
21020="DRIVER_SCHEVENT_ALREADY_USED,The specified bind/assign ID has already been used."
21021="DRIVER_RESOURCE_UNAVAILABLE,The hardware interface is currently unavailable."
21022="DRIVER_LOWLEVEL_ERROR,An error has been reported with the low level interface of a hardware driver."
21023="DRIVER_INV_ADDRESS,The provided I2C address is not valid."
21024="DRIVER_INV_HANDLE,The provided signal handle is not valid."
21025="DRIVER_I2C_ERROR,There is a generic error with the I2C driver."
21026="DRIVER_INV_WRITELEN,The specified write data length for an I2C operation is not valid."
21027="DRIVER_INV_READLEN,The specified read data length for an I2C operation is not valid."
21028="DRIVER_STR_NEXTBLOCK_EXISTS,"
21029="DRIVER_INVALID_FREQ,The specified frequency/baud rate is not valid."
21030="DRIVER_NOFREE_PPI_CHANNEL,"
21031="DRIVER_I2C_STUCK_SLAVE,A slave device on the I2C bus is stuck, try resetting all devices and repeating the operation."
21032="DRIVER_I2C_ADDRESS_NACK,The I2C address byte was not acknowledged."
21033="DRIVER_I2C_DATA_NACK,The I2C data byte was not acknowledged."
21034="DRIVER_I2C_INV_REGADDR,An attempt was made to communicate with an I2C slave that isn't connected or responding."
21035="DRIVER_INVALID_MODE,The specified I2C mode is not valid."
21036="DRIVER_NOFREE_GPIOTE_CHANNEL,"
21037="DRIVER_NOFREE_PWMFREQ_CONTEXT,"
21038="DRIVER_PWM_UNCONFIGURABLE,The specified GPIO cannot be configured for frequency/PWM output."
21039="DRIVER_CLOSED,"
21040="DRIVER_TIMER_NOT_CREATED,"
21041="DRIVER_BUFFERS_NOT_EMPTY,The UART buffer was not empty when an attempt was made to close it."
21042="DRIVER_INV_TIMEOUT,"
21043="DRIVER_INV_CHANNEL,An invalid channel was used to assign an event to."
21044="DRIVER_CHANNEL_ALREADY_USED,The specified assign/bind channel has already been used."
21045="DRIVER_SIG_NOFREE_CHANNELS,"
21046="DRIVER_GPIO_ALREADY_BOUND,The specificed GPIO line is already bound to an event."
21047="DRIVER_SIG_NOTSENSE_ENABLED,"
21048="DRIVER_SIG_SENSE_BUSY,Wake-up pin configuration has already been set."
21049="DRIVER_INV_POLARITY,"
21050="DRIVER_I2C_TIMEOUT,A timeout has occured with the I2C hardware driver."
21051="DRIVER_SIG_NOT_OUTPUT,"
21052="DRIVER_INVALID_PORT,"
21053="DRIVER_INVALID_MFSI_CHANNEL,An invalid SPI channel was specified."
21054="DRIVER_INVALID_ERASETYPE,"
21055="DRIVER_INVALID_POLARITY,The polarity specified for an assign/bind event is invalid."
21056="DRIVER_TIMER_NOT_CONFIGURED,"
21057="DRIVER_BUFFER_NOMATCH,An invalid buffer ID was specified."
21058="DRIVER_INVALID_FLAG,An invalid flag was used when opening an SPI handle."
21059="DRIVER_CHANNEL_OPENED,"
21060="DRIVER_SIG_NOTCHANGEBLE,The function of this GPIO pin cannot be changed."
21061="DRIVER_SIG_SENSE_NOTAVAILABLE,An invalid GPIO port has been used as a wake-up pin."
21062="DRIVER_INVALID_ALARM_SETTING,The provided alarm setting is invalid."
21063="DRIVER_INVALID_RTC_MONTHVALUE,The provided RTC month is invalid."
21064="DRIVER_I2C_INCORRECT_RXLEN,The provided I2C receive length is invalid."
21065="DRIVER_I2C_INVALID_SYSCLK,The provided I2C clock speed is invalid."
21066="DRIVER_INVALID_PERIPH_INSTANCE,"
21067="DRIVER_SERIALFLASH_NOTPRESENT,"
21068="DRIVER_SERIALFLASH_UNKNOWN,"
21069="DRIVER_PWM_IS_ACTIVE,"
21070="DRIVER_PWM_MAXVAL_TOO_LOW,"
21072="DRIVER_LOWLEVEL_ERR_00,"
21073="DRIVER_LOWLEVEL_ERR_01,"
21074="DRIVER_LOWLEVEL_ERR_02,"
21075="DRIVER_LOWLEVEL_ERR_03,"
21076="DRIVER_LOWLEVEL_ERR_04,"
21077="DRIVER_LOWLEVEL_ERR_05,"
21078="DRIVER_LOWLEVEL_ERR_06,"
21079="DRIVER_LOWLEVEL_ERR_07,"
21080="DRIVER_LOWLEVEL_ERR_08,"
21081="DRIVER_LOWLEVEL_ERR_09,"
21082="DRIVER_LOWLEVEL_ERR_0A,"
21083="DRIVER_LOWLEVEL_ERR_0B,"
21084="DRIVER_LOWLEVEL_ERR_0C,"
21085="DRIVER_LOWLEVEL_ERR_0D,"
21086="DRIVER_LOWLEVEL_ERR_0E,"
21087="DRIVER_LOWLEVEL_ERR_0F,"
21088="DRIVER_INVALID_INDEX,The provided index is outside the allowed range for this function."
21089="DRIVER_NOT_DIGIN_OUT,The provided pin is not a digital in/out pin."
21090="DRIVER_INVALID_WDT_TIME,The supplied watchdog timeout is not valid."
21091="DRIVER_WDT_ALREADY_RUNNING,The watchdog timer is already running and cannot be restarted."
21092="DRIVER_SPI_TIMEOUT,A timeout occured whilst waiting for an SPI device to respond."
21093="DRIVER_INV_UARTBREAK_OPTION,"
21094="DRIVER_QSPI_NOTPRESENT,No QSPI device was detected."
21095="DRIVER_QSPI_TIMEOUT,A timeout has occured whilst waiting for a response from a QSPI device."
21096="DRIVER_QSPI_STR_SIZE_LIMIT,The read size is longer than the maximum length of a string and must be less."
21097="DRIVER_QSPI_STR_ADDR_NOT_RAM,The string is not placed in RAM and cannot be used for this operation."
21098="DRIVER_QSPI_OFFSET_NOT_VALID,The offset value is not valid, it must be a multiple of 4 and less than the QSPI flash size."
21099="DRIVER_QSPI_LENGTH_NOT_VALID,The length of the data is not valid, it must be a multiple of 4."
21100="DRIVER_QSPI_BUSY_WITH_ERASE,The QSPI flash is currently busy with a full-chip erase process."
21101="DRIVER_QSPI_ERASE_TYPE_INVALID,The supplied type of erase is not valid."
21102="DRIVER_QSPI_ERASE_STARTED_EVENT,A full-chip erase process has started, the process will be reported in the EVQSPIERASED event."
21103="DRIVER_QSPI_ERASE_TIMEOUT_ERROR,A timeout has occured whilst attempting to start the erase process."
21104="DRIVER_QSPI_ERASE_RESP_ERROR,An error occured whilst checking the status of the QSPI flash during the full-chip erase process."
21105="DRIVER_QSPI_ERASE_RESP_RESET,An on-going QSPI flash erase process was stopped without finishing. The QSPI flash may contain corrupt data."
21106="DRIVER_QSPI_INVALID_POWER_MODE,The supplied power mode is not valid."
21107="DRIVER_QSPI_CUSTOM_LENGTH_MAX,The command length is longer than the maximum allowed for a custom command."
21108="DRIVER_QSPI_PIO_CANNOT_CHANGE,The pin number for this function cannot be changed."
21109="DRIVER_QSPI_DPM_ACTIVE,DPM is currently active and must be disabled to use the QSPI functions."
21110="DRIVER_QSPI_DPM_NOT_ENABLED,The QSPI driver was opened without DPM support, DPM functions cannot be used."
21248="SCH_SOME_ERROR,"
21760="LIC_INV_LICENCE_LEN,The license code for your module is not valid, as a result, device functionality is severely limited until a valid license is entered to the module."
22016="FUP_TXBUFFER_NOSPACE,"
22017="FUP_UNKNOWN_CMD,"
22018="FUP_PROTECTED_MEMORY,"
22272="BTC_INV_INDEX,The provided index for a BTC function is not valid."
22273="BTC_ALREADY_INQUIRING,A classic Bluetooth inquiry is already in progress"
22274="BTC_INQUIRY_REPORT_QUE_EMPTY,There are no BTC inquiry reports in the queue."
22275="BTC_NO_MORE_EIR_ELEMENTS,There are no more BTC EIR elements in the inquiry report."
22276="BTC_INV_EIRPACKET_TAG,The specified EIR packet tag is not valid."
22277="BTC_SPP_ALREADY_CONNECTING,A SPP connection is already currently in progress."
22278="BTC_INV_MAC_ADDRESS,The specified Bluetooth address is not valid."
22279="BTC_NO_DATA_WAITING,There is no data waiting for the specified BTC handle."
22280="BTC_SPP_INV_HANDLE,The supplied SPP handle is not valid."
22281="BTC_SPP_PORT_OUTOFRANGE,The specified SPP port is not valid."
22282="BTC_SPP_SERVER_MALLOC_FAIL,There was a problem allocating memory for an SPP server, try to free device memory by using smaller/less resources and try again."
22283="BTC_SPP_SERVER_SDP_REG_FAILED,An error occured whilst registering an SPP server instance on the SDP."
22284="BTC_SPP_PORT_MALLOC_FAIL,There was a problem allocating memory for an SPP client connect, try to free device memory by using smaller/less resources and try again."
22285="BTC_INV_PIN,The provided pin for a classic Bluetooth pairing is not valid."
22286="BTC_INV_DATABASE_TABLEID,The specified BTC bonding database table ID is not valid."
22287="BTC_KEY_NOT_IN_TABLE,There is no entry for the provided Bluetooth address in the classic Bluetooth database."
22288="BTC_LINK_KEY_MISSING,There is no link key for the provided Bluetooth address in the classic Bluetooth database."
22289="BTC_TRUSTED_DATABASE_FULL,Both the temporary and persistent BTC trusted databases are full and cannot accept additional entries."
22290="BTC_TRUSTED_TABLE_FULL,The temporary or persistent BTC trusted database table is full and cannot accept additional entries."
22291="BTC_TRUSTED_DATABASE_NOMORE,There are no more BTC trusted database entries to iterate over."
22292="BTC_CORRUPT_TABLEINDEX,The BTC trusted database table is corrupt, data contained within it will be inaccessable."
22293="BTC_CORRUPT_BONDINFO,An entry in the BTC trusted database table is corrupt."
22294="BTC_TOO_MANY_PERSISTENT,The BTC persistent trusted database is full and cannot accept any additional entries."
22295="BTC_UNKNOWN_LINK_KEY_TYPE,The provided classic Bluetooth link key type is not valid."
22296="BTC_INV_LINK_KEY,A provided BTC link key is not valid."
22297="BTC_INV_NAME_LENGTH,The provided classic Bluetooth name is not valid."
22298="BTC_NOT_PAIRABLE,The device cannot pair using classic Bluetooth because pairing is set to disable."
22299="BTC_INV_PAIR_OPTION,The provided classic Bluetooth pairing option is not valid."
22300="BTC_INVALID_MODE,The provided classic Bluetooth mode is not valid."
22301="BTC_INVALID_LIMITED_TIMOUT,The provided classic Bluetooth limited timeout is not valid."
22302="BTC_SPP_QUEUE_FULL,Unable to send SPP data, the queue is currently full."
22303="BTC_MAX_SPP_CONNECTIONS,The maximum number of SPP connections has been reached."
22304="BTC_INV_IOCAPABILITY,The provided BTC IO capability is not valid."
22305="BTC_INV_PASSKEY,The provided BTC passkey is not valid."
22306="BTC_INV_OOB_HASH,The provided BTC Out-Of-Band pairing hash is not valid."
22307="BTC_INV_OOB_RANDOMISER,The provided BTC Out-Of-Band pairing randomiser is not valid."
22308="BTC_SPP_PORTS_ESTABLISHED,"
22309="BTC_SPP_MAX_SERVERS,The maximum number of SPP servers have been created, no more can be created."
22310="BTC_HID_DESC_ALLOC_FAIL,"
22311="BTC_HID_DESC_INV_FORMAT,"
22312="BTC_HID_DEVICE_REG_FAIL,"
22313="BTC_HID_DEVICE_NAME_ALLOC,"
22314="BTC_HID_DEVICE_SDP_FAIL,"
22315="BTC_HID_ALREADY_CONNECTING,"
22316="BTC_HID_DEVICE_OPEN,"
22317="BTC_HID_HOST_OPEN,"
22318="BTC_HID_NOT_OPENED,HID has not been opened, it must first be opened before being used."
22319="BTC_HID_CONTROL_NOT_ALLOWED,"
22320="BTC_HID_CONTROL_INVALID,"
22321="BTC_INV_OOBPREF,The provided BTC Out-Of-Band pairing preference is not valid."
22322="BTC_DIS_INVSRC,"
22323="BTC_HID_INV_HANDLE,The provided HID handle is not valid."
22324="BTC_HID_REPORT_BUF_ALLOC,"
22325="BTC_HID_NO_REPORTS_WAITING,There are no HID reports waiting in the queue."
22326="BTC_HID_REPORT_ALLOC,"
22327="BTC_HID_QUEUE_FULL,"
22328="BTC_IAP_INVALID_PARMS,"
22329="BTC_IAP_INFO_NOT_SET,"
22330="BTC_IAP_NOT_ALLOWED,"
22331="BTC_SNIFF_INVALID_PARAMS,"
22332="BTC_INVALID_ACL_HANDLE,"
22333="BTC_INVALID_BDADDR,"
22334="BTC_ACL_RECORD_FAILED,"
22335="BTC_SNIFF_DISABLED,"
22336="BTC_SUBRATE_INVALID_PARAMS,"
22337="BTC_HID_INVALID_PROTOCOL,"
22528="BTS_IEEE_MACADDR_MISSING,There is no IEEE Bluetooth address on this module."
22784="CRYPTO_INV_KEY_LEN,The provided key for a crypto function is an invalid length."
22785="CRYPTO_INV_INITVECT_LEN,The initiation vector for the cryptographic module is invalid."
22786="CRYPTO_INV_INDATABLOCK_LEN,Data in to a crypto function is an invalid length"
22787="CRYPTO_INV_MODE,The specified mode for the cryptographic module is invalid."
22788="CRYPTO_INV_BLOCK_SIZE,The block size supplied to a crypto function is invalid."
22789="CRYPTO_CONTEXT_UNINITIALISED,No key has been supplied to the crytographic module."
22790="CRYPTO_DH_INTERNAL_ERROR,"
23040="NFC_INVALID_INTERFACEID,"
23041="NFC_UNKNOWN_TARGET_ERR,"
23042="NFC_INVALID_OOBLEN,"
23043="NFC_NOTOPEN,An attempt has been made to use the NFC module before it was opened."
23044="NFC_NOTAVAILABLE,An attempt was made to use NFC but it is not available on this module."
23045="NFC_DISABLE_FAIL,"
23046="NFC_ENABLE_FAIL,"
23047="NFC_REBOOT_REQUIRED,"
23048="NFC_INVALID_MAXRECORDS,"
23049="NFC_INVALID_MAXMEMORY,"
23050="NFC_NO_MEMORY,"
23051="NFC_NO_METADATA_OBJECT,"
23052="NFC_INVALID_MDATA_HANDLE,"
23053="NFC_NDEF_TOOMANY_RECS,"
23054="NFC_NDEF_TOOFEW_RECS,"
23055="NFC_INVALID_LANGCODE,"
23056="NFC_INVALID_PAYLOAD,"
23057="NFC_INCONSISTENT_NDEFMSG,"
23058="NFC_NDEF_MSG_IS_EMPTY,"
23059="NFC_INV_DEVNAME_LEN,"
23060="NFC_INV_APPEARANCE,"
23061="NFC_INV_ROLE,"
23062="NFC_INV_TEMPKEY,"
23063="NFC_INV_FLAGS,"
23064="NFC_INV_TNF,"
23065="NFC_INV_PAYLOAD_HANDLE,"
23066="NFC_NDEF_IS_COMMITED,"
23067="NFC_TYPE_IS_EMPTY,"
23068="NFC_TYPE_IS_TOO_LONG,"
23069="NFC_ID_IS_TOO_LONG,"
23264="NFC_RETVAL_ERROR,"
23265="NFC_RETVAL_INVALID_STATE,"
23266="NFC_RETVAL_INVALID_SIZE,"
23267="NFC_RETVAL_INVALID_ARGUMENT,"
23276="NFC_RETVAL_DATA_SIZE,"
23296="ESB_NOT_OPEN,"
23297="ESB_ALREADY_OPEN,"
23298="ESB_INVALID_CHANNEL,"
23299="ESB_INVALID_RFBITRATE,"
23301="ESB_INVALID_RETRANSMIT_DELAY,"
23302="ESB_INVALID_RETRANSMIT_COUNT,"
23303="ESB_INVALID_TXPOWER,"
23304="ESB_INVALID_PAYLOAD_LEN,"
23305="ESB_TOO_MUCH_DATA,"
23306="ESB_INVALID_PIPE_NUMBER,"
23307="ESB_INVALID_ACTIONID,"
23308="ESB_ADDR_LEN_MISMATCH,"
23309="ESB_ADDR_LEN_INVALID,"