embedded-trainings-2020/embedded-workshop-book/src/SUMMARY.md

76 lines
3.7 KiB
Markdown
Raw Permalink Normal View History

2020-07-09 10:16:32 +00:00
# Summary
2020-07-14 11:50:19 +00:00
- [Preparations](./preparations.md)
- [Checking the Hardware](./hardware.md)
- [Installation Instructions](./installation.md)
2020-07-14 15:02:25 +00:00
- [Tooling check](./tooling-check.md)
2020-07-09 10:16:32 +00:00
- [Beginner Workbook](./beginner-workbook.md)
- [Parts of an Embedded Program](./parts-embedded-program.md)
- [Building an Embedded Program](./building-program.md)
2020-07-13 14:48:13 +00:00
- [Binary Size](./binary-size.md)
- [Running the Program](./running-from-vsc.md)
2020-07-09 10:16:32 +00:00
- [Panicking](./panicking.md)
- [Using a Hardware Abstraction Layer](./using-hal.md)
- [Timers and Time](./time.md)
- [nRF52840 Dongle](./dongle.md)
- [Radio Out](./radio-out.md)
2020-07-14 17:15:07 +00:00
- [Radio Setup](./radio-setup.md)
- [Messages](./messages.md)
- [Link Quality Indicator (LQI)](./link-quality.md)
2020-07-09 10:16:32 +00:00
- [Radio In ](./radio-in.md)
- [Radio Puzzle](./radio-puzzle.md)
- [Radio Puzzle Help](./radio-puzzle-help.md)
- [Next Steps](./beginner-next-steps.md)
- [Collision avoidance](./collision-avoidance.md)
- [Interrupt handling](./interrupt-handling.md)
- [Starting a Project from Scratch](./from-scratch.md)
2020-07-09 10:16:32 +00:00
- [Advanced Workbook](./advanced-workbook.md)
- [Code Organization](./code-organisation.md)
- [Listing USB Devices](./listing-usb-devices.md)
- [Hello, world!](./hello-world.md)
- [Checking the API documentation](./api-documentation.md)
- [RTIC hello](./rtic-hello.md)
- [Dealing with Registers](./dealing-with-registers.md)
- [Event Handling](./event-handling.md)
- [Task State](./task-state.md)
- [USB Enumeration](./usb-enumeration.md)
2020-07-13 11:48:24 +00:00
- [USB-1: Dealing with USB Events](./usb-events.md)
2020-07-09 10:16:32 +00:00
- [USB Endpoints](./usb-endpoints.md)
- [Control Transfers](./control-transfers.md)
2020-07-13 11:48:24 +00:00
- [USB-2: SETUP Stage](./setup-stage.md)
2020-07-09 10:16:32 +00:00
- [Device Descriptor](./device-descriptor.md)
2020-07-13 11:48:24 +00:00
- [USB-3: DATA Stage](./data-stage.md)
2020-07-09 10:16:32 +00:00
- [DMA](./dma.md)
2020-07-13 11:48:24 +00:00
- [USB-4: Supporting more Standard Requests](./supporting-standard-requests.md)
2020-07-09 10:16:32 +00:00
- [Error Handling](./error-handling.md)
2020-07-13 11:48:24 +00:00
- [Updating Device State](./updating-device-state.md)
- [Dealing with Unknown Requests](./unknown-requests.md)
2020-07-09 10:16:32 +00:00
- [SET_ADDRESS](./set-address.md)
2020-07-13 11:48:24 +00:00
- [Handling GET_DESCRIPTOR Configuration Requests](./get-descriptor-config.md)
2020-07-16 13:13:31 +00:00
- [Configuration descriptor](./configuration-descriptor.md)
- [Interfaces](./interfaces.md)
- [Interface descriptor](./interface-descriptor.md)
- [Endpoint descriptor](./endpoint-descriptor.md)
- [Response](./get-descriptor-config-response.md)
2020-07-13 11:48:24 +00:00
- [SET_CONFIGURATION (Linux & Mac OS)](./set-config.md)
- [Idle State](./idle-state.md)
- [Inspecting the Descriptors](./inspecting-descriptors.md)
- [Getting it Configured](./getting-device-configured.md)
- [Next Steps](./advanced-next-steps.md)
2021-01-22 14:01:48 +00:00
- [Stack Overflow Protection](./stack-overflow-protection.md)
- [References and Resources](./references-resources.md)
2021-01-20 15:25:34 +00:00
- [Tooltips](./tooltips.md)
2020-07-13 15:41:37 +00:00
- [Troubleshooting](./troubleshooting.md)
- [`cargo-size` is not working](./troubleshoot-cargo-size.md)
- [`cargo-flash` is not working](./troubleshoot-cargo-flash.md)
- [Rust analyzer is not working](./troubleshoot-rust-analyzer.md)
- [`cargo-build` fails to link](./troubleshoot-cargo-build.md)
- [`dongle-flash` is not working](./troubleshoot-dongle-flash.md)
- [Dongle USB functionality is not working](./troubleshoot-usb-dongle.md)
2020-07-16 13:14:47 +00:00
- [`cargo run` errors](./troubleshoot-cargo-run-error.md)
2021-06-14 09:59:13 +00:00
- [`no probe was found` error](./troubleshoot-probe-not-found.md)
2022-03-31 10:39:10 +00:00
- [`location info is incomplete` error](./troubleshoot-location-info.md)
2021-05-04 18:58:42 +00:00
- [DEPRECATED - `nrfutil` setup](DEPRECATED-nrfutil-setup.md)
2021-01-20 15:50:22 +00:00
- [Appendix](./appendix.md)
- [Using GDB](./gdb.md)