Koji KITAYAMA
Koji KITAYAMA
This patch fixes JTAG with CMSIS-DAP. CMSIS-DAP must be in Run-Test/Idle state after JTAG initialization. The PR requires #1448
Fix typo
Add range check before accessing `resp[2]`. If calling with `read_tdo=0`, `resp[2]` is not exist.
When building pioasm with clang x86_64-pc-windows-msvc and Windows 10 SDK, the following error occurs. This PR fixes the errors. ```console [1/2] Building CXX object CMakeFiles/pioasm.dir/gen/lexer.cpp.obj FAILED: CMakeFiles/pioasm.dir/gen/lexer.cpp.obj C:\PROGRA~1\LLVM\bin\CLANG_~1.EXE -IC:/pico-sdk/tools/pioasm -IC:/pico-sdk/tools/pioasm/gen...
When building elf2uf2 with clang x86_64-pc-windows-msvc and Windows 10 SDK, the following warning occurs. This PR suppresses the warnings. ```console [1/2] Building CXX object CMakeFiles/elf2uf2.dir/main.cpp.obj C:/pico-sdk/tools/elf2uf2/main.cpp:359:16: warning: 'fopen' is deprecated:...
In current implementation, one-byte transfer is encoded with TransferBlock command. But, in case of one-byte transfer, it is better to use Transfer command to reduce USB packet size. TransferBlock command...