Skip to content

Commit

Permalink
saved some radio test proof and code
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Shipman committed Dec 9, 2023
1 parent bd37f79 commit 771de2f
Show file tree
Hide file tree
Showing 1,357 changed files with 207,508 additions and 18,246 deletions.
Binary file modified Code/.DS_Store
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 added Code/XbeeJoint/radio_test_reference/rx.uf2
Binary file not shown.
14 changes: 14 additions & 0 deletions Code/XbeeJoint/radio_test_reference/rx_test/(Not)XBee_Joint.h
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 Code/XbeeJoint/radio_test_reference/rx_test/CMakeLists.txt
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)
Loading

0 comments on commit 771de2f

Please sign in to comment.