-
Notifications
You must be signed in to change notification settings - Fork 9
/
gherkin.lss
15696 lines (14685 loc) · 576 KB
/
gherkin.lss
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
gherkin.elf: file format elf32-avr
Sections:
Idx Name Size VMA LMA File off Algn
0 .data 00000038 00800100 000056ca 0000575e 2**0
CONTENTS, ALLOC, LOAD, DATA
1 .text 000056ca 00000000 00000000 00000094 2**1
CONTENTS, ALLOC, LOAD, READONLY, CODE
2 .bss 000000c1 00800138 00800138 00005796 2**0
ALLOC
3 .noinit 00000004 008001f9 008001f9 00005796 2**0
ALLOC
4 .stab 000023dc 00000000 00000000 00005798 2**2
CONTENTS, READONLY, DEBUGGING
5 .stabstr 00000405 00000000 00000000 00007b74 2**0
CONTENTS, READONLY, DEBUGGING
6 .comment 00000011 00000000 00000000 00007f79 2**0
CONTENTS, READONLY
7 .debug_aranges 00000ae0 00000000 00000000 00007f8a 2**0
CONTENTS, READONLY, DEBUGGING
8 .debug_info 00010d78 00000000 00000000 00008a6a 2**0
CONTENTS, READONLY, DEBUGGING
9 .debug_abbrev 00004158 00000000 00000000 000197e2 2**0
CONTENTS, READONLY, DEBUGGING
10 .debug_line 00005614 00000000 00000000 0001d93a 2**0
CONTENTS, READONLY, DEBUGGING
11 .debug_frame 00001dd8 00000000 00000000 00022f50 2**2
CONTENTS, READONLY, DEBUGGING
12 .debug_str 00004af7 00000000 00000000 00024d28 2**0
CONTENTS, READONLY, DEBUGGING
13 .debug_loc 0000909f 00000000 00000000 0002981f 2**0
CONTENTS, READONLY, DEBUGGING
14 .debug_ranges 00000c40 00000000 00000000 000328be 2**0
CONTENTS, READONLY, DEBUGGING
Disassembly of section .text:
00000000 <__vectors>:
#include "HIDParser.h"
uint8_t USB_ProcessHIDReport(const uint8_t* ReportData,
uint16_t ReportSize,
HID_ReportInfo_t* const ParserData)
{
0: 0c 94 ad 06 jmp 0xd5a ; 0xd5a <__ctors_end>
4: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
8: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
10: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
14: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
18: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
1c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
20: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
24: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
28: 0c 94 5b 0e jmp 0x1cb6 ; 0x1cb6 <__vector_10>
2c: 0c 94 2d 0f jmp 0x1e5a ; 0x1e5a <__vector_11>
30: 0c 94 33 1e jmp 0x3c66 ; 0x3c66 <__vector_12>
34: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
HID_StateTable_t StateTable[HID_STATETABLE_STACK_DEPTH];
HID_StateTable_t* CurrStateTable = &StateTable[0];
HID_CollectionPath_t* CurrCollectionPath = NULL;
HID_ReportSizeInfo_t* CurrReportIDInfo = &ParserData->ReportIDSizes[0];
38: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
3c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
40: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
44: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
uint16_t UsageList[HID_USAGE_STACK_DEPTH];
uint8_t UsageListSize = 0;
HID_MinMax_t UsageMinMax = {0, 0};
memset(ParserData, 0x00, sizeof(HID_ReportInfo_t));
48: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
4c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
50: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
memset(CurrStateTable, 0x00, sizeof(HID_StateTable_t));
54: 0c 94 a6 1e jmp 0x3d4c ; 0x3d4c <__vector_21>
58: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
5c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
60: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
memset(CurrReportIDInfo, 0x00, sizeof(HID_ReportSizeInfo_t));
64: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
68: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
ParserData->TotalDeviceReports = 1;
6c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
70: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
74: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
78: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
7c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
HID_StateTable_t* CurrStateTable = &StateTable[0];
HID_CollectionPath_t* CurrCollectionPath = NULL;
HID_ReportSizeInfo_t* CurrReportIDInfo = &ParserData->ReportIDSizes[0];
uint16_t UsageList[HID_USAGE_STACK_DEPTH];
uint8_t UsageListSize = 0;
HID_MinMax_t UsageMinMax = {0, 0};
80: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
84: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
88: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
HID_StateTable_t StateTable[HID_STATETABLE_STACK_DEPTH];
HID_StateTable_t* CurrStateTable = &StateTable[0];
HID_CollectionPath_t* CurrCollectionPath = NULL;
HID_ReportSizeInfo_t* CurrReportIDInfo = &ParserData->ReportIDSizes[0];
uint16_t UsageList[HID_USAGE_STACK_DEPTH];
uint8_t UsageListSize = 0;
8c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
90: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
uint16_t ReportSize,
HID_ReportInfo_t* const ParserData)
{
HID_StateTable_t StateTable[HID_STATETABLE_STACK_DEPTH];
HID_StateTable_t* CurrStateTable = &StateTable[0];
HID_CollectionPath_t* CurrCollectionPath = NULL;
94: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
98: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
NewReportItem.BitOffset = CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType];
CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType] += CurrStateTable->Attributes.BitSize;
ParserData->LargestReportSizeBits = MAX(ParserData->LargestReportSizeBits, CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType]);
9c: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
a0: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
a4: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
a8: 0c 94 f1 06 jmp 0xde2 ; 0xde2 <__bad_interrupt>
CurrCollectionPath = &ParserData->CollectionPaths[1];
while (CurrCollectionPath->Parent != NULL)
{
if (CurrCollectionPath == &ParserData->CollectionPaths[HID_MAX_COLLECTIONS - 1])
ac: 92 0f add r25, r18
ae: b4 0f add r27, r20
b0: 9f 10 cpse r9, r15
b2: b4 0f add r27, r20
b4: 9f 10 cpse r9, r15
b6: f6 0f add r31, r22
b8: 19 10 cpse r1, r9
ba: 9f 10 cpse r9, r15
break;
case HID_RI_REPORT_ID(0):
CurrStateTable->ReportID = ReportItemData;
if (ParserData->UsingReportIDs)
bc: 6e 10 cpse r6, r14
be: 81 10 cpse r8, r1
c0: f5 13 cpse r31, r21
c2: f5 13 cpse r31, r21
c4: 23 14 cp r2, r3
c6: 23 14 cp r2, r3
c8: 7f 14 cp r7, r15
{
CurrReportIDInfo = NULL;
for (uint8_t i = 0; i < ParserData->TotalDeviceReports; i++)
ca: bb 14 cp r11, r11
cc: 28 17 cp r18, r24
ce: 28 17 cp r18, r24
d0: d3 14 cp r13, r3
d2: 28 17 cp r18, r24
d4: ca 15 cp r28, r10
memset(CurrStateTable, 0x00, sizeof(HID_StateTable_t));
memset(CurrReportIDInfo, 0x00, sizeof(HID_ReportSizeInfo_t));
ParserData->TotalDeviceReports = 1;
while (ReportSize)
d6: ca 15 cp r28, r10
d8: 98 16 cp r9, r24
da: ac 16 cp r10, r28
dc: 28 17 cp r18, r24
{
uint8_t HIDReportItem = *ReportData;
de: 16 17 cp r17, r22
000000e0 <actionmaps>:
e0: 14 00 1a 00 08 00 15 00 17 00 1c 00 18 00 0c 00 ................
uint32_t ReportItemData;
ReportData++;
ReportSize--;
switch (HIDReportItem & HID_RI_DATA_SIZE_MASK)
f0: 12 00 13 00 04 00 16 00 07 00 09 00 0a 00 0b 00 ................
{
uint8_t HIDReportItem = *ReportData;
uint32_t ReportItemData;
ReportData++;
ReportSize--;
100: 0d 00 0e 00 0f 00 28 00 1d 21 1b 32 06 34 19 a4 ......(..!.2.4..
switch (HIDReportItem & HID_RI_DATA_SIZE_MASK)
{
case HID_RI_DATA_BITS_32:
ReportItemData = (((uint32_t)ReportData[3] << 24) | ((uint32_t)ReportData[2] << 16) |
110: 29 a2 2c a1 05 a5 11 a3 10 31 2a 00 1e 00 1f 00 ).,......1*.....
120: 20 00 21 00 22 00 23 00 24 00 25 00 26 00 27 00 .!.".#.$.%.&.'.
((uint16_t)ReportData[1] << 8) | ReportData[0]);
130: 3a 00 3b 00 3c 00 3d 00 3e 00 3f 00 40 00 41 00 :.;.<.=.>[email protected].
ReportSize--;
switch (HIDReportItem & HID_RI_DATA_SIZE_MASK)
{
case HID_RI_DATA_BITS_32:
ReportItemData = (((uint32_t)ReportData[3] << 24) | ((uint32_t)ReportData[2] << 16) |
140: 42 00 43 00 01 00 01 00 01 00 01 00 4c 00 01 00 B.C.........L...
ReportSize -= 4;
ReportData += 4;
break;
case HID_RI_DATA_BITS_16:
ReportItemData = (((uint16_t)ReportData[1] << 8) | (ReportData[0]));
150: 01 00 01 00 01 00 01 00 1e 02 1f 02 20 02 21 02 ............ .!.
160: 22 02 23 02 24 02 25 02 26 02 27 02 2d 00 2e 02 ".#.$.%.&.'.-...
ReportSize -= 2;
ReportData += 2;
break;
case HID_RI_DATA_BITS_8:
ReportItemData = ReportData[0];
170: 34 00 34 02 38 00 31 00 37 00 36 00 52 00 33 00 4.4.8.1.7.6.R.3.
ReportSize -= 1;
ReportData += 1;
180: 2d 02 2e 00 38 02 31 02 01 00 01 00 33 02 50 00 -...8.1.....3.P.
default:
ReportItemData = 0;
break;
}
switch (HIDReportItem & (HID_RI_TYPE_MASK | HID_RI_TAG_MASK))
190: 51 00 4f 00 01 00 01 00 01 00 01 00 01 00 01 00 Q.O.............
1a0: 01 00 01 00 2f 00 30 00 2b 00 01 00 01 00 01 00 ..../.0.+.......
case HID_RI_USAGE_PAGE(0):
if ((HIDReportItem & HID_RI_DATA_SIZE_MASK) == HID_RI_DATA_BITS_32)
CurrStateTable->Attributes.Usage.Page = (ReportItemData >> 16);
CurrStateTable->Attributes.Usage.Page = ReportItemData;
1b0: 01 00 01 00 01 00 01 00 01 00 01 00 01 00 01 00 ................
default:
ReportItemData = 0;
break;
}
switch (HIDReportItem & (HID_RI_TYPE_MASK | HID_RI_TAG_MASK))
1c0: 01 00 01 00 01 00 01 00 01 00 01 00 01 00 01 00 ................
1d0: 01 00 01 00 01 00 01 00 01 00 01 00 01 00 01 00 ................
1e0: 2f 02 30 02 2b 00 01 00 01 00 01 00 01 00 01 00 /.0.+...........
1f0: 01 00 01 00 01 00 01 00 01 00 01 00 01 00 01 00 ................
200: 01 00 01 00 4a 00 4e 00 4b 00 4d 00 92 45 23 46 ....J.N.K.M..E#F
210: 8a 45 94 45 46 00 01 00 01 00 01 00 36 02 37 02 .E.EF.......6.7.
220: 01 00 01 00 01 00 01 00 01 00 01 00 01 00 01 00 ................
230: 00 d1 00 d0 01 00 01 00 01 00 01 00 bf 00 01 00 ................
return HID_PARSE_InsufficientReportItems;
memcpy(&ParserData->ReportItems[ParserData->TotalReportItems],
&NewReportItem, sizeof(HID_ReportItem_t));
if (!(ReportItemData & HID_IOF_CONSTANT) && CALLBACK_HIDParser_FilterHIDReportItem(&NewReportItem))
240: 01 00 01 00 01 00 01 00 ........
00000248 <__c.1928>:
248: 0a 00 ..
0000024a <__c.1926>:
24a: 25 30 31 36 62 00 %016b.
00000250 <__c.1924>:
250: 3a 20 00 : .
00000253 <__c.1922>:
}
switch (HIDReportItem & (HID_RI_TYPE_MASK | HID_RI_TAG_MASK))
{
case HID_RI_PUSH(0):
if (CurrStateTable == &StateTable[HID_STATETABLE_STACK_DEPTH - 1])
253: 25 30 32 58 00 %02X.
00000258 <__c.1919>:
258: 0a 72 2f 63 20 30 31 32 33 34 35 36 37 38 39 41 .r/c 0123456789A
return HID_PARSE_HIDStackOverflow;
memcpy((CurrStateTable + 1),
268: 42 43 44 45 46 0a 00 BCDEF..
0000026f <__c.1897>:
26f: 0a 00 ..
00000271 <__c.1895>:
CurrStateTable,
sizeof(HID_ReportItem_t));
CurrStateTable++;
271: 25 30 32 58 00 %02X.
00000276 <__c.1893>:
break;
case HID_RI_POP(0):
if (CurrStateTable == &StateTable[0])
276: 62 6f 75 6e 63 65 21 3a 20 00 bounce!: .
00000280 <__c.4870>:
return HID_PARSE_HIDStackUnderflow;
CurrStateTable--;
280: 4b 65 79 62 6f 61 72 64 20 73 74 61 72 74 2e 0a Keyboard start..
CurrStateTable->Attributes.Usage.Page = ReportItemData;
break;
case HID_RI_LOGICAL_MINIMUM(0):
CurrStateTable->Attributes.Logical.Minimum = ReportItemData;
break;
290: 00 .
00000291 <__c.4868>:
291: 55 53 42 20 63 6f 6e 66 69 67 75 72 65 64 2e 0a USB configured..
case HID_RI_LOGICAL_MAXIMUM(0):
CurrStateTable->Attributes.Logical.Maximum = ReportItemData;
break;
2a1: 00 .
000002a2 <__c.4863>:
case HID_RI_PHYSICAL_MINIMUM(0):
CurrStateTable->Attributes.Physical.Minimum = ReportItemData;
2a2: 0d 0a 69 6e 69 74 0a 00 ..init..
000002aa <__c.4757>:
2aa: 5b 44 5d 00 [D].
000002ae <__c.4752>:
break;
case HID_RI_PHYSICAL_MAXIMUM(0):
CurrStateTable->Attributes.Physical.Maximum = ReportItemData;
2ae: 5b 43 5d 00 [C].
000002b2 <ProductString>:
2b2: 2a 03 54 00 68 00 65 00 20 00 67 00 68 00 65 00 *.T.h.e. .g.h.e.
case HID_RI_UNIT_EXPONENT(0):
CurrStateTable->Attributes.Unit.Exponent = ReportItemData;
break;
case HID_RI_UNIT(0):
CurrStateTable->Attributes.Unit.Type = ReportItemData;
2c2: 72 00 6b 00 69 00 6e 00 20 00 4b 00 65 00 79 00 r.k.i.n. .K.e.y.
case HID_RI_REPORT_SIZE(0):
CurrStateTable->Attributes.BitSize = ReportItemData;
break;
case HID_RI_REPORT_COUNT(0):
CurrStateTable->ReportCount = ReportItemData;
2d2: 62 00 6f 00 61 00 72 00 64 00 00 00 b.o.a.r.d...
000002de <ManufacturerString>:
break;
case HID_RI_REPORT_ID(0):
CurrStateTable->ReportID = ReportItemData;
if (ParserData->UsingReportIDs)
2de: 0c 03 64 00 69 00 30 00 69 00 62 00 00 00 ..d.i.0.i.b...
000002ec <LanguageString>:
{
CurrReportIDInfo = NULL;
for (uint8_t i = 0; i < ParserData->TotalDeviceReports; i++)
2ec: 04 03 09 04 ....
000002f0 <ConfigurationDescriptor>:
2f0: 09 02 8d 00 05 01 00 a0 32 09 04 00 00 01 03 01 ........2.......
300: 01 00 09 21 11 01 00 01 22 40 00 07 05 81 03 08 ...!...."@......
{
if (ParserData->ReportIDSizes[i].ReportID == CurrStateTable->ReportID)
310: 00 0a 09 04 01 00 01 03 01 02 00 09 21 11 01 00 ............!...
{
CurrReportIDInfo = &ParserData->ReportIDSizes[i];
320: 01 22 4d 00 07 05 82 03 08 00 0a 09 04 02 00 01 ."M.............
330: 03 00 00 00 09 21 11 01 00 01 22 36 00 07 05 83 .....!...."6....
if (CurrReportIDInfo == NULL)
{
if (ParserData->TotalDeviceReports == HID_MAX_REPORT_IDS)
return HID_PARSE_InsufficientReportIDItems;
CurrReportIDInfo = &ParserData->ReportIDSizes[ParserData->TotalDeviceReports++];
340: 03 08 00 0a 09 04 03 00 02 03 00 00 00 09 21 11 ..............!.
350: 01 00 01 22 22 00 07 05 84 03 20 00 01 07 05 04 ...""..... .....
360: 03 20 00 01 09 04 04 00 01 03 00 00 00 09 21 11 . ............!.
memset(CurrReportIDInfo, 0x00, sizeof(HID_ReportSizeInfo_t));
}
}
ParserData->UsingReportIDs = true;
370: 01 00 01 22 39 00 07 05 85 03 20 00 01 ..."9..... ..
0000037d <DeviceDescriptor>:
CurrReportIDInfo->ReportID = CurrStateTable->ReportID;
37d: 12 01 10 01 00 00 00 08 ed fe 0c 0a 70 00 01 02 ............p...
break;
case HID_RI_USAGE(0):
if (UsageListSize == HID_USAGE_STACK_DEPTH)
38d: 00 01 ..
0000038f <NKROReport>:
38f: 05 01 09 06 a1 01 05 07 19 e0 29 e7 15 00 25 01 ..........)...%.
return HID_PARSE_UsageListOverflow;
UsageList[UsageListSize++] = ReportItemData;
39f: 95 08 75 01 81 02 05 08 19 01 29 05 95 05 75 01 ..u.......)...u.
3af: 91 02 95 01 75 03 91 01 05 07 19 00 29 f7 15 00 ....u.......)...
break;
case HID_RI_COLLECTION(0):
if (CurrCollectionPath == NULL)
{
CurrCollectionPath = &ParserData->CollectionPaths[0];
3bf: 25 01 95 f8 75 01 81 02 c0 %...u....
000003c8 <ConsoleReport>:
3c8: 06 31 ff 09 74 a1 01 09 75 15 00 26 ff 00 95 20 .1..t...u..&...
{
HID_CollectionPath_t* ParentCollectionPath = CurrCollectionPath;
CurrCollectionPath = &ParserData->CollectionPaths[1];
while (CurrCollectionPath->Parent != NULL)
3d8: 75 08 81 02 09 76 15 00 26 ff 00 95 20 75 08 91 u....v..&... u..
{
if (CurrCollectionPath == &ParserData->CollectionPaths[HID_MAX_COLLECTIONS - 1])
3e8: 02 c0 ..
000003ea <ExtrakeyReport>:
3ea: 05 01 09 80 a1 01 85 02 16 81 00 26 b7 00 1a 81 ...........&....
return HID_PARSE_InsufficientCollectionPaths;
CurrCollectionPath++;
}
CurrCollectionPath->Parent = ParentCollectionPath;
3fa: 00 2a b7 00 75 10 95 01 81 00 c0 05 0c 09 01 a1 .*..u...........
}
CurrCollectionPath->Type = ReportItemData;
40a: 01 85 03 16 01 00 26 9c 02 1a 01 00 2a 9c 02 75 ......&.....*..u
CurrCollectionPath->Usage.Page = CurrStateTable->Attributes.Usage.Page;
41a: 10 95 01 81 00 c0 ......
00000420 <MouseReport>:
if (UsageListSize)
420: 05 01 09 02 a1 01 09 01 a1 00 05 09 19 01 29 05 ..............).
{
CurrCollectionPath->Usage.Usage = UsageList[0];
430: 15 00 25 01 95 05 75 01 81 02 95 01 75 03 81 01 ..%...u.....u...
for (uint8_t i = 1; i < UsageListSize; i++)
440: 05 01 09 30 09 31 15 81 25 7f 95 02 75 08 81 06 ...0.1..%...u...
UsageList[i - 1] = UsageList[i];
450: 09 38 15 81 25 7f 95 01 75 08 81 06 05 0c 0a 38 .8..%...u......8
UsageListSize--;
460: 02 15 81 25 7f 95 01 75 08 81 06 c0 c0 ...%...u.....
0000046d <KeyboardReport>:
}
else if (UsageMinMax.Minimum <= UsageMinMax.Maximum)
46d: 05 01 09 06 a1 01 05 07 19 e0 29 e7 15 00 25 01 ..........)...%.
{
CurrCollectionPath->Usage.Usage = UsageMinMax.Minimum++;
47d: 95 08 75 01 81 02 95 01 75 08 81 01 05 08 19 01 ..u.....u.......
}
break;
case HID_RI_END_COLLECTION(0):
if (CurrCollectionPath == NULL)
48d: 29 05 95 05 75 01 91 02 95 01 75 03 91 01 05 07 )...u.....u.....
return HID_PARSE_UnexpectedEndCollection;
CurrCollectionPath = CurrCollectionPath->Parent;
49d: 19 00 29 ff 15 00 26 ff 00 95 06 75 08 81 00 c0 ..)...&....u....
000004ad <__c.4488>:
break;
4ad: 63 6f 6e 73 75 6d 65 72 3a 20 25 30 34 58 0a 00 consumer: %04X..
000004bd <__c.4483>:
ParserData->LargestReportSizeBits = MAX(ParserData->LargestReportSizeBits, CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType]);
if (ParserData->TotalReportItems == HID_MAX_REPORTITEMS)
return HID_PARSE_InsufficientReportItems;
memcpy(&ParserData->ReportItems[ParserData->TotalReportItems],
4bd: 73 79 73 74 65 6d 3a 20 25 30 34 58 0a 00 system: %04X..
000004cb <__c.4475>:
&NewReportItem, sizeof(HID_ReportItem_t));
if (!(ReportItemData & HID_IOF_CONSTANT) && CALLBACK_HIDParser_FilterHIDReportItem(&NewReportItem))
4cb: 0a 00 ..
000004cd <__c.4470>:
4cd: 25 30 32 58 20 00 %02X .
000004d3 <__c.4467>:
4d3: 6b 65 79 62 6f 61 72 64 3a 20 00 keyboard: .
000004de <__c.4834>:
4de: 4c 45 44 3a 20 25 30 32 58 0a 00 LED: %02X..
000004e9 <__c.4615>:
break;
case HID_RI_INPUT(0):
case HID_RI_OUTPUT(0):
case HID_RI_FEATURE(0):
for (uint8_t ReportItemNum = 0; ReportItemNum < CurrStateTable->ReportCount; ReportItemNum++)
4e9: 64 65 6c 5f 6b 65 79 5f 62 69 74 3a 20 63 61 6e del_key_bit: can
{
HID_ReportItem_t NewReportItem;
memcpy(&NewReportItem.Attributes,
4f9: 27 74 20 64 65 6c 3a 20 25 30 32 58 0a 00 't del: %02X..
00000507 <__c.4610>:
&CurrStateTable->Attributes,
sizeof(HID_ReportItem_Attributes_t));
NewReportItem.ItemFlags = ReportItemData;
NewReportItem.CollectionPath = CurrCollectionPath;
507: 61 64 64 5f 6b 65 79 5f 62 69 74 3a 20 63 61 6e add_key_bit: can
NewReportItem.ReportID = CurrStateTable->ReportID;
517: 27 74 20 61 64 64 3a 20 25 30 32 58 0a 00 't add: %02X..
00000525 <__c.4786>:
if (UsageListSize)
525: 64 6f 6e 65 2e 0a 00 done...
0000052c <__c.4780>:
{
NewReportItem.Attributes.Usage.Usage = UsageList[0];
52c: 62 6f 6f 74 6d 61 67 69 63 20 73 63 61 6e 3a 20 bootmagic scan:
53c: 2e 2e 2e 20 00 ... .
00000541 <__c.4547>:
for (uint8_t i = 1; i < UsageListSize; i++)
541: 29 0a 00 )..
00000544 <__c.4545>:
544: 25 75 00 %u.
00000547 <__c.4543>:
547: 2f 00 /.
00000549 <__c.4541>:
549: 25 75 00 %u.
0000054c <__c.4539>:
UsageList[i - 1] = UsageList[i];
54c: 5d 28 00 ](.
0000054f <__c.4537>:
54f: 25 64 00 %d.
00000552 <__c.4535>:
if (UsageListSize)
{
NewReportItem.Attributes.Usage.Usage = UsageList[0];
for (uint8_t i = 1; i < UsageListSize; i++)
552: 20 00 .
00000554 <__c.4533>:
554: 25 64 00 %d.
00000557 <__c.4531>:
UsageList[i - 1] = UsageList[i];
UsageListSize--;
557: 20 00 .
00000559 <__c.4529>:
559: 25 64 00 %d.
0000055c <__c.4527>:
55c: 20 00 .
0000055e <__c.4525>:
55e: 25 64 00 %d.
00000561 <__c.4523>:
}
else if (UsageMinMax.Minimum <= UsageMinMax.Maximum)
561: 7c 00 |.
00000563 <__c.4521>:
563: 25 30 32 58 00 %02X.
00000568 <__c.4519>:
568: 6d 6f 75 73 65 6b 65 79 20 5b 62 74 6e 7c 78 20 mousekey [btn|x
{
NewReportItem.Attributes.Usage.Usage = UsageMinMax.Minimum++;
578: 79 20 76 20 68 5d 28 72 65 70 2f 61 63 6c 29 3a y v h](rep/acl):
uint8_t ItemTypeTag = (HIDReportItem & (HID_RI_TYPE_MASK | HID_RI_TAG_MASK));
if (ItemTypeTag == HID_RI_INPUT(0))
NewReportItem.ItemType = HID_REPORT_ITEM_In;
else if (ItemTypeTag == HID_RI_OUTPUT(0))
NewReportItem.ItemType = HID_REPORT_ITEM_Out;
588: 20 5b 00 [.
0000058b <__c.5178>:
58b: 6d 6b 5f 77 68 65 65 6c 5f 74 69 6d 65 5f 74 6f mk_wheel_time_to
else
NewReportItem.ItemType = HID_REPORT_ITEM_Feature;
NewReportItem.BitOffset = CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType];
59b: 5f 6d 61 78 20 3d 20 25 64 0a 00 _max = %d..
000005a6 <__c.5175>:
5a6: 6d 6b 5f 77 68 65 65 6c 5f 6d 61 78 5f 73 70 65 mk_wheel_max_spe
CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType] += CurrStateTable->Attributes.BitSize;
5b6: 65 64 20 3d 20 25 64 0a 00 ed = %d..
000005bf <__c.5172>:
ParserData->LargestReportSizeBits = MAX(ParserData->LargestReportSizeBits, CurrReportIDInfo->ReportSizeBits[NewReportItem.ItemType]);
5bf: 6d 6b 5f 74 69 6d 65 5f 74 6f 5f 6d 61 78 20 3d mk_time_to_max =
5cf: 20 25 64 0a 00 %d..
000005d4 <__c.5169>:
5d4: 6d 6b 5f 6d 61 78 5f 73 70 65 65 64 20 3d 20 25 mk_max_speed = %
5e4: 64 0a 00 d..
000005e7 <__c.5166>:
5e7: 6d 6b 5f 69 6e 74 65 72 76 61 6c 20 3d 20 25 64 mk_interval = %d
if (ParserData->TotalReportItems == HID_MAX_REPORTITEMS)
5f7: 0a 00 ..
000005f9 <__c.5162>:
5f9: 6d 6b 5f 64 65 6c 61 79 20 3d 20 25 64 0a 00 mk_delay = %d..
00000608 <__c.5155>:
return HID_PARSE_InsufficientReportItems;
memcpy(&ParserData->ReportItems[ParserData->TotalReportItems],
&NewReportItem, sizeof(HID_ReportItem_t));
if (!(ReportItemData & HID_IOF_CONSTANT) && CALLBACK_HIDParser_FilterHIDReportItem(&NewReportItem))
608: 6d 6b 5f 77 68 65 65 6c 5f 74 69 6d 65 5f 74 6f mk_wheel_time_to
618: 5f 6d 61 78 20 3d 20 25 64 0a 00 _max = %d..
00000623 <__c.5152>:
623: 6d 6b 5f 77 68 65 65 6c 5f 6d 61 78 5f 73 70 65 mk_wheel_max_spe
633: 65 64 20 3d 20 25 64 0a 00 ed = %d..
0000063c <__c.5149>:
63c: 6d 6b 5f 74 69 6d 65 5f 74 6f 5f 6d 61 78 20 3d mk_time_to_max =
64c: 20 25 64 0a 00 %d..
00000651 <__c.5146>:
651: 6d 6b 5f 6d 61 78 5f 73 70 65 65 64 20 3d 20 25 mk_max_speed = %
661: 64 0a 00 d..
00000664 <__c.5143>:
664: 6d 6b 5f 69 6e 74 65 72 76 61 6c 20 3d 20 25 64 mk_interval = %d
674: 0a 00 ..
00000676 <__c.5139>:
676: 6d 6b 5f 64 65 6c 61 79 20 3d 20 25 64 0a 00 mk_delay = %d..
00000685 <__c.5132>:
685: 0a 00 ..
00000687 <__c.5130>:
687: 25 75 00 %u.
0000068a <__c.5128>:
ParserData->TotalReportItems++;
68a: 36 3a 20 77 68 65 65 6c 5f 74 69 6d 65 5f 74 6f 6: wheel_time_to
default:
break;
}
if ((HIDReportItem & HID_RI_TYPE_MASK) == HID_RI_TYPE_MAIN)
69a: 5f 6d 61 78 3a 20 00 _max: .
000006a1 <__c.5126>:
{
UsageMinMax.Minimum = 0;
UsageMinMax.Maximum = 0;
6a1: 0a 00 ..
000006a3 <__c.5124>:
6a3: 25 75 00 %u.
000006a6 <__c.5122>:
break;
}
if ((HIDReportItem & HID_RI_TYPE_MASK) == HID_RI_TYPE_MAIN)
{
UsageMinMax.Minimum = 0;
6a6: 35 3a 20 77 68 65 65 6c 5f 6d 61 78 5f 73 70 65 5: wheel_max_spe
UsageMinMax.Maximum = 0;
UsageListSize = 0;
}
}
if (!(ParserData->TotalReportItems))
6b6: 65 64 3a 20 00 ed: .
000006bb <__c.5120>:
return HID_PARSE_NoUnfilteredReportItems;
6bb: 0a 00 ..
000006bd <__c.5118>:
6bd: 25 75 00 %u.
000006c0 <__c.5116>:
switch (HIDReportItem & (HID_RI_TYPE_MASK | HID_RI_TAG_MASK))
{
case HID_RI_PUSH(0):
if (CurrStateTable == &StateTable[HID_STATETABLE_STACK_DEPTH - 1])
return HID_PARSE_HIDStackOverflow;
6c0: 34 3a 20 74 69 6d 65 5f 74 6f 5f 6d 61 78 3a 20 4: time_to_max:
break;
case HID_RI_END_COLLECTION(0):
if (CurrCollectionPath == NULL)
return HID_PARSE_UnexpectedEndCollection;
6d0: 00 .
000006d1 <__c.5114>:
6d1: 0a 00 ..
000006d3 <__c.5112>:
}
if (!(ParserData->TotalReportItems))
return HID_PARSE_NoUnfilteredReportItems;
return HID_PARSE_Successful;
6d3: 25 75 00 %u.
000006d6 <__c.5110>:
}
if (CurrReportIDInfo == NULL)
{
if (ParserData->TotalDeviceReports == HID_MAX_REPORT_IDS)
return HID_PARSE_InsufficientReportIDItems;
6d6: 33 3a 20 6d 61 78 5f 73 70 65 65 64 3a 20 00 3: max_speed: .
000006e5 <__c.5108>:
if (!(ParserData->TotalReportItems))
return HID_PARSE_NoUnfilteredReportItems;
return HID_PARSE_Successful;
}
6e5: 0a 00 ..
000006e7 <__c.5106>:
6e7: 25 75 00 %u.
000006ea <__c.5104>:
6ea: 32 3a 20 69 6e 74 65 72 76 61 6c 28 6d 73 29 3a 2: interval(ms):
6fa: 20 00 .
000006fc <__c.5102>:
6fc: 0a 00 ..
000006fe <__c.5100>:
6fe: 25 75 00 %u.
00000701 <__c.5098>:
701: 31 3a 20 64 65 6c 61 79 28 2a 31 30 6d 73 29 3a 1: delay(*10ms):
711: 20 00 .
00000713 <__c.5096>:
713: 0a 09 2d 20 56 61 6c 75 65 73 20 2d 0a 00 ..- Values -..
00000721 <__c.5216>:
721: 4d 3e 00 M>.
00000724 <__c.5214>:
724: 4d 25 64 3e 20 00 M%d> .
0000072a <__c.5212>:
72a: 3f 00 ?.
0000072c <__c.5209>:
72c: 73 65 74 20 64 65 66 61 75 6c 74 0a 00 set default..
00000739 <__c.5195>:
739: 43 3e 20 00 C> .
0000073d <__c.5185>:
73d: 77 68 65 72 65 20 64 65 6c 74 61 3a 20 63 75 72 where delta: cur
74d: 73 6f 72 3d 25 64 2c 20 77 68 65 65 6c 3d 25 64 sor=%d, wheel=%d
75d: 0a 53 65 65 20 68 74 74 70 3a 2f 2f 65 6e 2e 77 .See http://en.w
76d: 69 6b 69 70 65 64 69 61 2e 6f 72 67 2f 77 69 6b ikipedia.org/wik
77d: 69 2f 4d 6f 75 73 65 5f 6b 65 79 73 0a 00 i/Mouse_keys..
0000078b <__c.5183>:
78b: 0a 09 2d 20 4d 6f 75 73 65 6b 65 79 20 2d 0a 45 ..- Mousekey -.E
79b: 53 43 2f 71 3a 09 71 75 69 74 0a 31 3a 09 64 65 SC/q:.quit.1:.de
7ab: 6c 61 79 28 2a 31 30 6d 73 29 0a 32 3a 09 69 6e lay(*10ms).2:.in
7bb: 74 65 72 76 61 6c 28 6d 73 29 0a 33 3a 09 6d 61 terval(ms).3:.ma
7cb: 78 5f 73 70 65 65 64 0a 34 3a 09 74 69 6d 65 5f x_speed.4:.time_
7db: 74 6f 5f 6d 61 78 0a 35 3a 09 77 68 65 65 6c 5f to_max.5:.wheel_
7eb: 6d 61 78 5f 73 70 65 65 64 0a 36 3a 09 77 68 65 max_speed.6:.whe
7fb: 65 6c 5f 74 69 6d 65 5f 74 6f 5f 6d 61 78 0a 0a el_time_to_max..
80b: 70 3a 09 70 72 69 6e 74 20 76 61 6c 75 65 73 0a p:.print values.
81b: 64 3a 09 73 65 74 20 64 65 66 61 75 6c 74 73 0a d:.set defaults.
82b: 75 70 3a 09 2b 31 0a 64 6f 77 6e 3a 09 2d 31 0a up:.+1.down:.-1.
83b: 70 67 75 70 3a 09 2b 31 30 0a 70 67 64 6f 77 6e pgup:.+10.pgdown
84b: 3a 09 2d 31 30 0a 0a 73 70 65 65 64 20 3d 20 64 :.-10..speed = d
85b: 65 6c 74 61 20 2a 20 6d 61 78 5f 73 70 65 65 64 elta * max_speed
86b: 20 2a 20 28 72 65 70 65 61 74 20 2f 20 74 69 6d * (repeat / tim
87b: 65 5f 74 6f 5f 6d 61 78 29 0a 00 e_to_max)..
00000886 <__c.5088>:
886: 3f 00 ?.
00000888 <__c.5085>:
888: 4d 3e 20 00 M> .
0000088c <__c.5090>:
88c: 43 3e 20 00 C> .
00000890 <__c.5234>:
890: 4c 25 64 0a 00 L%d..
00000895 <__c.5074>:
895: 0a 09 2d 20 43 6f 6e 73 6f 6c 65 20 2d 0a 45 53 ..- Console -.ES
8a5: 43 2f 71 3a 09 71 75 69 74 0a 6d 3a 09 6d 6f 75 C/q:.quit.m:.mou
8b5: 73 65 6b 65 79 0a 00 sekey..
000008bc <__c.4880>:
8bc: 0a 09 2d 20 4d 61 67 69 63 20 2d 0a 64 3a 09 64 ..- Magic -.d:.d
8cc: 65 62 75 67 0a 78 3a 09 64 65 62 75 67 20 6d 61 ebug.x:.debug ma
8dc: 74 72 69 78 0a 6b 3a 09 64 65 62 75 67 20 6b 65 trix.k:.debug ke
8ec: 79 62 6f 61 72 64 0a 6d 3a 09 64 65 62 75 67 20 yboard.m:.debug
8fc: 6d 6f 75 73 65 0a 76 3a 09 76 65 72 73 69 6f 6e mouse.v:.version
90c: 0a 73 3a 09 73 74 61 74 75 73 0a 63 3a 09 63 6f .s:.status.c:.co
91c: 6e 73 6f 6c 65 20 6d 6f 64 65 0a 30 2d 34 3a 09 nsole mode.0-4:.
92c: 6c 61 79 65 72 30 2d 34 28 46 31 30 2d 46 34 29 layer0-4(F10-F4)
93c: 0a 50 61 75 73 3a 09 62 6f 6f 74 6c 6f 61 64 65 .Paus:.bootloade
94c: 72 0a 65 3a 09 65 65 70 72 6f 6d 0a 6e 3a 09 4e r.e:.eeprom.n:.N
95c: 4b 52 4f 0a 00 KRO..
00000961 <__c.4994>:
961: 0a 00 ..
00000963 <__c.4992>:
963: 25 75 00 %u.
00000966 <__c.4990>:
966: 2e 6c 65 76 65 6c 3a 20 00 .level: .
0000096f <__c.4988>:
96f: 0a 00 ..
00000971 <__c.4986>:
971: 25 75 00 %u.
00000974 <__c.4984>:
974: 2e 65 6e 61 62 6c 65 3a 20 00 .enable: .
0000097e <__c.4982>:
97e: 0a 00 ..
00000980 <__c.4980>:
980: 25 30 32 58 00 %02X.
00000985 <__c.4978>:
985: 62 61 63 6b 6c 69 67 68 74 5f 63 6f 6e 66 69 67 backlight_config
995: 2e 72 61 77 3a 20 00 .raw: .
0000099c <__c.4975>:
99c: 0a 00 ..
0000099e <__c.4973>:
99e: 25 75 00 %u.
000009a1 <__c.4971>:
9a1: 2e 6e 6b 72 6f 3a 20 00 .nkro: .
000009a9 <__c.4969>:
9a9: 0a 00 ..
000009ab <__c.4967>:
9ab: 25 75 00 %u.
000009ae <__c.4965>:
9ae: 2e 73 77 61 70 5f 62 61 63 6b 73 6c 61 73 68 5f .swap_backslash_
9be: 62 61 63 6b 73 70 61 63 65 3a 20 00 backspace: .
000009ca <__c.4963>:
9ca: 0a 00 ..
000009cc <__c.4961>:
9cc: 25 75 00 %u.
000009cf <__c.4959>:
9cf: 2e 73 77 61 70 5f 67 72 61 76 65 5f 65 73 63 3a .swap_grave_esc:
9df: 20 00 .
000009e1 <__c.4957>:
9e1: 0a 00 ..
000009e3 <__c.4955>:
9e3: 25 75 00 %u.
000009e6 <__c.4953>:
9e6: 2e 6e 6f 5f 67 75 69 3a 20 00 .no_gui: .
000009f0 <__c.4951>:
9f0: 0a 00 ..
000009f2 <__c.4949>:
9f2: 25 75 00 %u.
000009f5 <__c.4947>:
9f5: 2e 73 77 61 70 5f 72 61 6c 74 5f 72 67 75 69 3a .swap_ralt_rgui:
a05: 20 00 .
00000a07 <__c.4945>:
a07: 0a 00 ..
00000a09 <__c.4943>:
a09: 25 75 00 %u.
00000a0c <__c.4941>:
a0c: 2e 73 77 61 70 5f 6c 61 6c 74 5f 6c 67 75 69 3a .swap_lalt_lgui:
a1c: 20 00 .
00000a1e <__c.4939>:
a1e: 0a 00 ..
00000a20 <__c.4937>:
a20: 25 75 00 %u.
00000a23 <__c.4935>:
a23: 2e 63 61 70 73 6c 6f 63 6b 5f 74 6f 5f 63 6f 6e .capslock_to_con
a33: 74 72 6f 6c 3a 20 00 trol: .
00000a3a <__c.4933>:
a3a: 0a 00 ..
00000a3c <__c.4931>:
a3c: 25 75 00 %u.
00000a3f <__c.4929>:
a3f: 2e 73 77 61 70 5f 63 6f 6e 74 72 6f 6c 5f 63 61 .swap_control_ca
a4f: 70 73 6c 6f 63 6b 3a 20 00 pslock: .
00000a58 <__c.4927>:
a58: 0a 00 ..
00000a5a <__c.4925>:
a5a: 25 30 32 58 00 %02X.
00000a5f <__c.4923>:
a5f: 6b 65 79 6d 61 70 5f 63 6f 6e 66 69 67 2e 72 61 keymap_config.ra
a6f: 77 3a 20 00 w: .
00000a73 <__c.4920>:
a73: 0a 00 ..
00000a75 <__c.4918>:
a75: 25 75 00 %u.
00000a78 <__c.4916>:
a78: 2e 6d 6f 75 73 65 3a 20 00 .mouse: .
00000a81 <__c.4914>:
a81: 0a 00 ..
00000a83 <__c.4912>:
a83: 25 75 00 %u.