aboutsummaryrefslogtreecommitdiff
path: root/examples/rp/src/bin
Commit message (Collapse)AuthorAgeFilesLines
...
| * | examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-078-19/+14
| |/
* / cyw43: add Bluetooth support.Dario Nieuwenhuis2024-08-056-12/+160
|/ | | | Co-Authored-By: Brandon Ros <[email protected]>
* Merge pull request #3159 from kalkyl/shared-busJames Munns2024-07-181-0/+115
|\ | | | | | | Add example for shared I2C and SPI buses
| * Add link to example in bookkalkyl2024-07-081-2/+2
| |
| * Add example for shared I2C and SPI buseskalkyl2024-07-081-0/+115
| |
* | Fix example after swapping bufferedUart rx and tx in split fnMathias2024-07-171-1/+1
| |
* | rustfmtrafael2024-07-081-5/+2
| |
* | rustfmtrafael2024-07-081-1/+1
| |
* | add assign_resources examplerafael2024-07-081-0/+82
|/
* Add more docs and cross-linkskalkyl2024-07-081-6/+16
|
* Add example for sharing things between taskskalkyl2024-07-081-0/+140
|
* Merge pull request #3132 from oro-os/wiznet-version-checkDario Nieuwenhuis2024-07-024-4/+8
|\ | | | | | | wiznet: add version check to initialization sequence
| * wiznet: add version check to initialization sequenceJosh Junon2024-06-304-4/+8
| |
* | rp/i2c: add address flexibility and exampleKrzysztof Królczyk2024-06-281-0/+85
|/ | | | | | | Previous i2c examples are using either blocking Embassy API or e-h traits, this example uses Embassy pub API directly. Signed-off-by: Krzysztof Królczyk <[email protected]>
* Fix rngcore imports in examples9names2024-06-253-0/+6
|
* Replace joke seed with best RNG available9names2024-06-254-4/+10
|
* rustfmtrafael2024-06-241-2/+2
|
* comment the commentsrafael2024-06-241-2/+4
|
* rustfmt againrafael2024-06-241-4/+2
|
* rustfmtrafael2024-06-241-16/+9
|
* add wifi_webrequest examplerafael2024-06-231-0/+197
|
* Merge pull request #3044 from kalkyl/adc-multiHenrik Alsér2024-06-221-0/+54
|\ | | | | | | rp: Add multichannel ADC
| * rp: Add multichannel ADCkalkyl2024-06-051-0/+54
| |
* | --binary-format bin in rp examplesrafael2024-06-154-8/+8
| |
* | typo: was missing "bin"rafael2024-06-144-8/+8
| |
* | probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address ↵rafael2024-06-134-8/+8
| | | | | | | | | | | | 0x10100000 yields: Error: --format has been renamed to --binary-format. Please use --binary-format bin instead of --format bin
* | Clarified comments about the cortex_m::asm::delay functionality in al… (#3064)Daniel Philipp2024-06-121-2/+2
|/ | | | | | | | | | | * Clarified comments about the cortex_m::asm::delay functionality in all multiprio.rs examples * fixed formatting * Changed to using embassy_time::block_for() * removed my formatting scripts * specify embassy_time::Duration
* Add descriptionkalkyl2024-06-041-0/+3
|
* core atomickalkyl2024-06-041-1/+2
|
* rp: Add zerocopy channel examplekalkyl2024-06-041-0/+90
|
* rp/pwm: rename channel->slice in args, misc fix.Dario Nieuwenhuis2024-05-211-2/+1
|
* Merge pull request #2888 from FransUrbo/uart_r503Dario Nieuwenhuis2024-05-201-0/+158
|\ | | | | Added PIO UART examples for rp to talk to an R503 fingerprint scanner.
| * Example and documentation on how to Calculate correct checksum.Turbo Fredriksson2024-05-011-78/+104
| | | | | | | | | | | | + Include the package format documentation. + Cycle through all three colours in three different speed. - Remove the `write_cmd_bytes()`. Superfluous.
| * Finish the read part.Turbo Fredriksson2024-05-011-30/+49
| | | | | | | | | | | | | | * Don't need separate task for this. * **Must** read one byte at a time, then merge them into one Vec. * To better demonstrate, cycle through the three colours Red, Blue, Purple.
| * Added PIO UART examples for rp to talk to an R503 fingerprint scanner.Turbo Fredriksson2024-05-011-0/+113
| |
* | refactor rp usb_serial example to use a task to run the usbTim Docker2024-05-121-45/+55
| |
* | spinlock + loop at end to allow defmt to flush properlykalkyl2024-05-111-0/+3
| |
* | rp: Add embedded-sdmmc examplekalkyl2024-05-111-0/+80
| |
* | rustfmtkalkyl2024-05-091-5/+5
| |
* | rp: Add raw interrupt handler examplekalkyl2024-05-091-0/+95
| |
* | rp: WebUSB example - add Windows compatibilitykalkyl2024-04-301-1/+19
|/
* Merge pull request #2862 from AtoVproject/feature/web-usb-classDario Nieuwenhuis2024-04-281-0/+137
|\ | | | | WebUSB implementation
| * feature: WebUSB capability implementationChris Maniewski2024-04-271-0/+137
| | | | | | | | | | | | | | This adds the WebUSB implementation as per https://wicg.github.io/webusb/, using one in-endpoint and one out-endpoint as well as an example for the RP2040 to illustrate this capability.
* | Merge pull request #2846 from BjornTheProgrammer/mainDario Nieuwenhuis2024-04-262-0/+326
|\ \ | | | | | | | | | Added PIO pwm examples for rp
| * | Changed attach to newBjorn2024-04-212-4/+4
| | |
| * | Added PIO pwm examples for rpBjorn2024-04-202-0/+326
| |/ | | | | | | Two additionally `rp` examples, `pio_pwm.rs`, which is a baremetal example of how to do pwm with pio, and `pio_servo.rs`, which is a more extended example of pwm and pio with servos.
* | usb-hid: all the RequestHandler method accept &mut selfBoris Faure2024-04-152-6/+6
| |
* | examples: request_handler is mutableBoris Faure2024-04-152-8/+8
|/
* Add parameter for enabling pull-up and pull-down in RP PWM input modepawel001002024-04-051-1/+2
|
* rp: remove mod sealed.Dario Nieuwenhuis2024-04-051-1/+1
|