| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's) | Dario Nieuwenhuis | 2024-08-07 | 8 | -19/+14 | |
| | |/ | ||||||
| * / | cyw43: add Bluetooth support. | Dario Nieuwenhuis | 2024-08-05 | 6 | -12/+160 | |
| |/ | | | | Co-Authored-By: Brandon Ros <[email protected]> | |||||
| * | Merge pull request #3159 from kalkyl/shared-bus | James Munns | 2024-07-18 | 1 | -0/+115 | |
| |\ | | | | | | | Add example for shared I2C and SPI buses | |||||
| | * | Add link to example in book | kalkyl | 2024-07-08 | 1 | -2/+2 | |
| | | | ||||||
| | * | Add example for shared I2C and SPI buses | kalkyl | 2024-07-08 | 1 | -0/+115 | |
| | | | ||||||
| * | | Fix example after swapping bufferedUart rx and tx in split fn | Mathias | 2024-07-17 | 1 | -1/+1 | |
| | | | ||||||
| * | | rustfmt | rafael | 2024-07-08 | 1 | -5/+2 | |
| | | | ||||||
| * | | rustfmt | rafael | 2024-07-08 | 1 | -1/+1 | |
| | | | ||||||
| * | | add assign_resources example | rafael | 2024-07-08 | 1 | -0/+82 | |
| |/ | ||||||
| * | Add more docs and cross-links | kalkyl | 2024-07-08 | 1 | -6/+16 | |
| | | ||||||
| * | Add example for sharing things between tasks | kalkyl | 2024-07-08 | 1 | -0/+140 | |
| | | ||||||
| * | Merge pull request #3132 from oro-os/wiznet-version-check | Dario Nieuwenhuis | 2024-07-02 | 4 | -4/+8 | |
| |\ | | | | | | | wiznet: add version check to initialization sequence | |||||
| | * | wiznet: add version check to initialization sequence | Josh Junon | 2024-06-30 | 4 | -4/+8 | |
| | | | ||||||
| * | | rp/i2c: add address flexibility and example | Krzysztof Królczyk | 2024-06-28 | 1 | -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 examples | 9names | 2024-06-25 | 3 | -0/+6 | |
| | | ||||||
| * | Replace joke seed with best RNG available | 9names | 2024-06-25 | 4 | -4/+10 | |
| | | ||||||
| * | rustfmt | rafael | 2024-06-24 | 1 | -2/+2 | |
| | | ||||||
| * | comment the comments | rafael | 2024-06-24 | 1 | -2/+4 | |
| | | ||||||
| * | rustfmt again | rafael | 2024-06-24 | 1 | -4/+2 | |
| | | ||||||
| * | rustfmt | rafael | 2024-06-24 | 1 | -16/+9 | |
| | | ||||||
| * | add wifi_webrequest example | rafael | 2024-06-23 | 1 | -0/+197 | |
| | | ||||||
| * | Merge pull request #3044 from kalkyl/adc-multi | Henrik Alsér | 2024-06-22 | 1 | -0/+54 | |
| |\ | | | | | | | rp: Add multichannel ADC | |||||
| | * | rp: Add multichannel ADC | kalkyl | 2024-06-05 | 1 | -0/+54 | |
| | | | ||||||
| * | | --binary-format bin in rp examples | rafael | 2024-06-15 | 4 | -8/+8 | |
| | | | ||||||
| * | | typo: was missing "bin" | rafael | 2024-06-14 | 4 | -8/+8 | |
| | | | ||||||
| * | | probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address ↵ | rafael | 2024-06-13 | 4 | -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 Philipp | 2024-06-12 | 1 | -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 description | kalkyl | 2024-06-04 | 1 | -0/+3 | |
| | | ||||||
| * | core atomic | kalkyl | 2024-06-04 | 1 | -1/+2 | |
| | | ||||||
| * | rp: Add zerocopy channel example | kalkyl | 2024-06-04 | 1 | -0/+90 | |
| | | ||||||
| * | rp/pwm: rename channel->slice in args, misc fix. | Dario Nieuwenhuis | 2024-05-21 | 1 | -2/+1 | |
| | | ||||||
| * | Merge pull request #2888 from FransUrbo/uart_r503 | Dario Nieuwenhuis | 2024-05-20 | 1 | -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 Fredriksson | 2024-05-01 | 1 | -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 Fredriksson | 2024-05-01 | 1 | -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 Fredriksson | 2024-05-01 | 1 | -0/+113 | |
| | | | ||||||
| * | | refactor rp usb_serial example to use a task to run the usb | Tim Docker | 2024-05-12 | 1 | -45/+55 | |
| | | | ||||||
| * | | spinlock + loop at end to allow defmt to flush properly | kalkyl | 2024-05-11 | 1 | -0/+3 | |
| | | | ||||||
| * | | rp: Add embedded-sdmmc example | kalkyl | 2024-05-11 | 1 | -0/+80 | |
| | | | ||||||
| * | | rustfmt | kalkyl | 2024-05-09 | 1 | -5/+5 | |
| | | | ||||||
| * | | rp: Add raw interrupt handler example | kalkyl | 2024-05-09 | 1 | -0/+95 | |
| | | | ||||||
| * | | rp: WebUSB example - add Windows compatibility | kalkyl | 2024-04-30 | 1 | -1/+19 | |
| |/ | ||||||
| * | Merge pull request #2862 from AtoVproject/feature/web-usb-class | Dario Nieuwenhuis | 2024-04-28 | 1 | -0/+137 | |
| |\ | | | | | WebUSB implementation | |||||
| | * | feature: WebUSB capability implementation | Chris Maniewski | 2024-04-27 | 1 | -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/main | Dario Nieuwenhuis | 2024-04-26 | 2 | -0/+326 | |
| |\ \ | | | | | | | | | | Added PIO pwm examples for rp | |||||
| | * | | Changed attach to new | Bjorn | 2024-04-21 | 2 | -4/+4 | |
| | | | | ||||||
| | * | | Added PIO pwm examples for rp | Bjorn | 2024-04-20 | 2 | -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 self | Boris Faure | 2024-04-15 | 2 | -6/+6 | |
| | | | ||||||
| * | | examples: request_handler is mutable | Boris Faure | 2024-04-15 | 2 | -8/+8 | |
| |/ | ||||||
| * | Add parameter for enabling pull-up and pull-down in RP PWM input mode | pawel00100 | 2024-04-05 | 1 | -1/+2 | |
| | | ||||||
| * | rp: remove mod sealed. | Dario Nieuwenhuis | 2024-04-05 | 1 | -1/+1 | |
| | | ||||||
