File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
src/portable/raspberrypi/rp2040 Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
2
+ #
3
+ # SPDX-License-Identifier: Unlicense
4
+
5
+ repos :
6
+ - repo : local
7
+ hooks :
8
+ - id : codespell
9
+ name : codespell
10
+ entry : codespell
11
+ types_or : [c, header]
12
+ language : system
13
+
14
+ - id : unit-test
15
+ name : unit-test
16
+ files : ^(src/|test/unit-test/)
17
+ entry : sh -c "cd test/unit-test && ceedling test:all"
18
+ pass_filenames : false
19
+ types_or : [c, header]
20
+ language : system
Original file line number Diff line number Diff line change @@ -385,6 +385,11 @@ static void __tusb_irq_path_func(dcd_rp2040_irq)(void)
385
385
/* Controller API
386
386
*------------------------------------------------------------------*/
387
387
388
+ // older SDK
389
+ #ifndef PICO_SHARED_IRQ_HANDLER_HIGHEST_ORDER_PRIORITY
390
+ #define PICO_SHARED_IRQ_HANDLER_HIGHEST_ORDER_PRIORITY 0xff
391
+ #endif
392
+
388
393
void dcd_init (uint8_t rhport )
389
394
{
390
395
assert (rhport == 0 );
You can’t perform that action at this time.
0 commit comments