Ke Ao Teensy Flight Software
The software on the Teensy in the Ke Ao cubesat.
Loading...
Searching...
No Matches
artemis_channels.h
Go to the documentation of this file.
1
23#ifndef _ARTEMIS_CHANNELS_H
24#define _ARTEMIS_CHANNELS_H
25
26#include "config/artemis_defs.h"
27#include "debug.h"
28
29#define TEST_ASTRODEV
30
31namespace Artemis {
32 namespace Channels {
39 enum Channel_ID : uint8_t {
45 };
46
47 void rfm23_channel();
48 void rfm98_channel();
49 void astrodev_channel();
50 void pdu_channel();
51 void rpi_channel();
52 } // namespace Channels
53} // namespace Artemis
54
55#endif // _ARTEMIS_CHANNELS_H
Channel_ID
Enumeration of channel ID.
Definition artemis_channels.h:39
@ RFM98_CHANNEL
The channel controlling the RFM98 radio.
Definition artemis_channels.h:41
@ RPI_CHANNEL
The channel controlling the Raspberry Pi.
Definition artemis_channels.h:44
@ RFM23_CHANNEL
The channel controlling the RFM23 radio.
Definition artemis_channels.h:40
@ ASTRODEV_CHANNEL
The channel controlling the Astrodev (Li-3) radio.
Definition artemis_channels.h:42
@ PDU_CHANNEL
The channel controlling the PDU.
Definition artemis_channels.h:43
The Artemis definitions header file.
Definitions of Serial Console helper functions.