From 5cd4d4a02f7d9ec0cc081955ca97e6df699d3eab Mon Sep 17 00:00:00 2001 From: NotPike <18655435+notpike@users.noreply.github.com> Date: Sat, 8 Jan 2022 22:05:43 -0500 Subject: [PATCH] Updated Create a simple app (markdown) --- Create-a-simple-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Create-a-simple-app.md b/Create-a-simple-app.md index 8ea6b93..09cca3b 100644 --- a/Create-a-simple-app.md +++ b/Create-a-simple-app.md @@ -660,7 +660,7 @@ Accessing the HackRF's radio hardware has been simplified with helper classes su Data being transmitted and received from the HackRF have their own set of helper classes and structs shuch as [`baseband`](https://github.com/eried/portapack-mayhem/blob/next/firmware/application/baseband_api.cpp) and [`SharedMemory`](https://github.com/eried/portapack-mayhem/blob/next/firmware/common/portapack_shared_memory.hpp). Classes found in `firmware/application/protocols/` like [`encoders`](https://github.com/eried/portapack-mayhem/blob/next/firmware/application/protocols/encoders.cpp) for example can also handle data being transmitted and received from the radio. -There are also predefined TX and RX based widgets in found in [`firmware/application/ui/ui_transmitter.cpp`](https://github.com/eried/portapack-mayhem/blob/f161e85f960cff0c166173f4f7a4244b8c625375/firmware/application/ui/ui_transmitter.cpp) and [`firmware/application/ui/ui_receiver.cpp`](https://github.com/eried/portapack-mayhem/blob/f161e85f960cff0c166173f4f7a4244b8c625375/firmware/application/ui/ui_receiver.cpp). +There are also predefined TX and RX based widgets and functions in found in [`firmware/application/ui/ui_transmitter.cpp`](https://github.com/eried/portapack-mayhem/blob/f161e85f960cff0c166173f4f7a4244b8c625375/firmware/application/ui/ui_transmitter.cpp) and [`firmware/application/ui/ui_receiver.cpp`](https://github.com/eried/portapack-mayhem/blob/f161e85f960cff0c166173f4f7a4244b8c625375/firmware/application/ui/ui_receiver.cpp). ### TX