kopia lustrzana https://github.com/mobilinkd/tnc3-firmware
28 wiersze
304 B
C++
28 wiersze
304 B
C++
// Copyright 2017 Rob Riggs <rob@mobilinkd.com>
|
|
// All rights reserved.
|
|
|
|
#include "DCD.h"
|
|
#include "LEDIndicator.h"
|
|
|
|
static bool dcd_status{false};
|
|
|
|
void dcd_on(void)
|
|
{
|
|
rx_on();
|
|
dcd_status = true;
|
|
}
|
|
|
|
void dcd_off(void)
|
|
{
|
|
rx_off();
|
|
dcd_status = false;
|
|
}
|
|
|
|
int dcd(void)
|
|
{
|
|
return dcd_status;
|
|
}
|
|
|
|
|
|
|