File tree
6 files changed
+49
-17
lines changed- lib
- ports/nrf
- bluetooth
- common-hal/bleio
- supervisor
6 files changed
+49
-17
lines changed- README.md+14-10
- examples/device/cdc_msc_hid/Makefile+16-4
- examples/device/cdc_msc_hid/ses/nrf5x/nRF52840_xxAA_s140v6_MemoryMap.xml+5
- examples/device/cdc_msc_hid/ses/nrf5x/nrf5x.emProject+16-1
- hw/bsp/pca10056/board.mk+40
- hw/bsp/pca10056/board_pca10056.c+73-5
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble.h+685
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_err.h+93
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_gap.h+2.7k
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_gatt.h+229
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_gattc.h+715
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_gatts.h+845
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_hci.h+135
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_l2cap.h+506
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_ranges.h+156
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/ble_types.h+215
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf52/nrf_mbr.h+268
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_error.h+90
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_error_sdm.h+70
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_error_soc.h+85
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_nvic.h+491
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_sdm.h+367
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_soc.h+1.1k
- hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf_svc.h+90
- hw/mcu/nordic/nrfx_config.h+1-161
- src/class/cdc/cdc_device.c+1-1
- src/class/hid/hid_device.c+1-1
- src/class/msc/msc_device.c+1-1
- src/device/usbd.c+4-1
- src/host/usbh.c+3
- src/portable/microchip/samd21/dcd_samd21.c+1-1
- src/portable/nordic/nrf5x/hal_nrf5x.c+2-12
- src/tusb.c+5
- src/tusb.h+3
Lines changed: 19 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
| 35 | + | |
| 36 | + | |
35 | 37 |
| |
36 | 38 |
| |
37 | 39 |
| |
| |||
89 | 91 |
| |
90 | 92 |
| |
91 | 93 |
| |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
92 | 111 |
| |
93 | 112 |
| |
94 | 113 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
| 9 | + | |
9 | 10 |
| |
10 | 11 |
| |
11 | 12 |
| |
|
Lines changed: 12 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
| 39 | + | |
| 40 | + | |
39 | 41 |
| |
40 | 42 |
| |
41 | 43 |
| |
| |||
47 | 49 |
| |
48 | 50 |
| |
49 | 51 |
| |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 | 52 |
| |
54 | 53 |
| |
55 | 54 |
| |
| |||
101 | 100 |
| |
102 | 101 |
| |
103 | 102 |
| |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
104 | 107 |
| |
| 108 | + | |
| 109 | + | |
| 110 | + | |
105 | 111 |
| |
106 | 112 |
| |
| 113 | + | |
| 114 | + | |
| 115 | + | |
107 | 116 |
| |
108 | 117 |
| |
109 | 118 |
| |
|
Lines changed: 15 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
39 |
| - | |
40 |
| - | |
41 |
| - | |
| 39 | + | |
| 40 | + | |
42 | 41 |
| |
43 | 42 |
| |
44 | 43 |
| |
45 | 44 |
| |
| 45 | + | |
| 46 | + | |
| 47 | + | |
46 | 48 |
| |
47 |
| - | |
| 49 | + | |
| 50 | + | |
48 | 51 |
| |
49 | 52 |
| |
50 | 53 |
| |
| |||
73 | 76 |
| |
74 | 77 |
| |
75 | 78 |
| |
76 |
| - | |
77 |
| - | |
78 |
| - | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
79 | 84 |
| |
80 |
| - | |
81 |
| - | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
82 | 88 |
| |
83 | 89 |
|
Lines changed: 1 addition & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
54 | 54 |
| |
55 | 55 |
| |
56 | 56 |
| |
57 |
| - | |
58 |
| - | |
59 | 57 |
| |
60 |
| - | |
| 58 | + | |
61 | 59 |
| |
62 | 60 |
| |
63 | 61 |
| |
64 | 62 |
| |
65 | 63 |
| |
66 | 64 |
| |
67 | 65 |
| |
68 |
| - | |
69 | 66 |
| |
70 | 67 |
| |
71 | 68 |
| |
|
0 commit comments