├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Feedback on Raspberry Pi Pico and RP2040 2 | 3 | * Issues relating only to the Raspberry Pi Pico C/C++ SDK should be filed against the [`pico-sdk`](https://github.com/raspberrypi/pico-sdk) repo. 4 | * Issues relating to the C example code should be filed against the [`pico-examples`](https://github.com/raspberrypi/pico-examples) repo. 5 | * Issues relating to the to [`pico-extras`](https://github.com/raspberrypi/pico-extras) or [`pico-playground`](https://github.com/raspberrypi/pico-playground) should also be filed against those repos. 6 | * Issues relating to the Python example code should be filed against the [`pico-micropython-examples`](https://github.com/raspberrypi/pico-micropython-examples) repo. 7 | 8 | In general if there is a specific repo for the thing you have an issue around, you should file the issue on that repo. However all other issues, including documentation, other user-facing issues like IDE problems, should be filed [here](https://github.com/raspberrypi/pico-feedback/issues). 9 | 10 | Issues relating to the MicroPython port should now be filed against the upstream [`micropython`](https://github.com/micropython/micropython) repo as the RP2040 support has [been integrated](https://github.com/micropython/micropython/pull/6791) into the main MicroPython distribution. 11 | 12 | Issues relating to the CircuitPython port should be filed against the main [`circuitpython`](https://github.com/adafruit/circuitpython) repo as CircuitPython is maintained by Adafruit, and initial RP2040 support has [already been integrated](https://github.com/adafruit/circuitpython/pull/4031) into the main CircuitPython distribution. CircuitPython binaries can be found [here](https://circuitpython.org/board/raspberry_pi_pico/). 13 | --------------------------------------------------------------------------------