mirror of
https://github.com/meshtastic/firmware.git
synced 2026-03-29 20:43:23 -04:00
10 lines
208 B
C++
10 lines
208 B
C++
#pragma once
|
|
#ifdef ARCH_RASPBERRY_PI
|
|
#include <map>
|
|
|
|
extern std::map<int, int> settingsMap;
|
|
|
|
enum { use_sx1262, cs, irq, busy, reset, dio2_as_rf_switch, use_rf95, user };
|
|
int initGPIOPin(int pinNum);
|
|
|
|
#endif |