aboutsummaryrefslogtreecommitdiff
path: root/firmware/nrf24.h
blob: 9d543fce344cc0998a0d788580ec51699126bcef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <RF24.h>

// Initialization
void initNRF(RF24 &radio);

// Jammer modes
void startNRFJammer();        // dual-radio sweep jammer
void stopNRFJammer();         // (optional, for future)

// Advanced (later)
void nrfJammerSweep();        // internal, but can expose if needed
void nrfSetChannel(uint8_t ch);