ataradov / usb-sniffer-lite

A simple USB sniffer based on Raspberry Pi RP2040
BSD 3-Clause "New" or "Revised" License
547 stars 49 forks source link

development environment #11

Open 1250364116 opened 6 months ago

1250364116 commented 6 months ago

hi, i'm trying to use your code. my question is what sort of SDK or toolchain can compile your code? i tried to compile your code by official SDK that raspbery has published for pico boards, but it seems that sdk has been designed to work with pico/stdlib.h not your rp2040.h library.

ataradov commented 6 months ago

There is no development environment. There is just a Makefile in the build directory. You run make there and you get binary files.

You need to have ARM GCC and make in your Path.

1250364116 commented 6 months ago

thanks.sorry i ask you simple questions because I am new to this Raspberry microcontroller, so as I understood you suggest to build binary file without using any ide.

ataradov commented 6 months ago

The project includes all that is necessary for the build. There are no external dependencies. You can add all the files to some IDE if you want, but you don't have to do it. And I can't help you with the IDEs, since I don't use them.