-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
saved some radio test proof and code
- Loading branch information
Michael Shipman
committed
Dec 9, 2023
1 parent
bd37f79
commit 771de2f
Showing
1,357 changed files
with
207,508 additions
and
18,246 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
14 changes: 14 additions & 0 deletions
14
Code/XbeeJoint/radio_test_reference/rx_test/(Not)XBee_Joint.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _NOTXBEEJOINT_H | ||
#define _NOTXBEEJOINT_H | ||
|
||
#define CS_PIN 21 | ||
#define SCK_PIN 18 | ||
#define MOSI_PIN 19 | ||
#define MISO_PIN 20 | ||
#define TXEN_PIN 1 | ||
#define DIO1_PIN 3 | ||
#define BUSY_PIN 6 | ||
#define SW_PIN 9 | ||
#define DEBUG 1 | ||
|
||
#endif |
22 changes: 22 additions & 0 deletions
22
Code/XbeeJoint/radio_test_reference/rx_test/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
include(pico_sdk_import.cmake) | ||
|
||
project(test_project C CXX ASM) | ||
|
||
set(CMAKE_C_STANDARD 11) | ||
|
||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
pico_sdk_init() | ||
|
||
add_executable(test | ||
test.cpp | ||
SX1262.cpp | ||
) | ||
|
||
pico_enable_stdio_usb(test 1) | ||
|
||
pico_add_extra_outputs(test) | ||
|
||
target_link_libraries(test pico_stdlib hardware_flash hardware_sync hardware_spi pico_rand) |
Oops, something went wrong.