mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Issue:
irq wait 0
irq 0
are translated as:
irq(wait, 0) # 0
irq(nowait, 0) # 1
wait/nowait are incorrect, should be block or ommited (alt: noblock).
After change:
irq(block, 0) # 0
irq(0) # 1
|
||
|---|---|---|
| .. | ||
| gen | ||
| ada_output.cpp | ||
| c_sdk_output.cpp | ||
| CMakeLists.txt | ||
| hex_output.cpp | ||
| lexer.ll | ||
| main.cpp | ||
| output_format.h | ||
| parser.yy | ||
| pio_assembler.cpp | ||
| pio_assembler.h | ||
| pio_disassembler.cpp | ||
| pio_disassembler.h | ||
| pio_types.h | ||
| python_output.cpp | ||