Carrier detect LED written in C for speed.

This commit is contained in:
2022-02-03 09:12:10 +01:00
parent 11bca2e5a5
commit 892a4a10c2
5 changed files with 24 additions and 1 deletions

Binary file not shown.

View File

@@ -0,0 +1,22 @@
#include <pigpio.h>
#include <stdio.h>
#define DCD_LED 17
int main()
{
if (gpioInitialise() < 0)
{
// pigpio initialisation failed.
printf("pigpio failed");
}
else
{
// pigpio initialised okay.
gpioSetMode(DCD_LED, PI_OUTPUT); // Set DCD_LED as output
gpioWrite(DCD_LED, 1); // Set DCD_LED high
gpioSleep(PI_TIME_RELATIVE, 1, 0); // sleep for one second
gpioWrite(DCD_LED, 0); // Set DCD_LED low
gpioTerminate();
}
}

View File

@@ -0,0 +1 @@
gcc -Wall -pthread -o prog dcd.c -lpigpio -lrt

BIN
aprs_utils/carrier_detect_led Executable file

Binary file not shown.

View File

@@ -55,7 +55,7 @@ LAST_EPOCH_DATE="$(date -d"$CURRENT_DATE_TIME" +%s)"
while read LINE
do
# Light up carrier detect
/home/marcel/ham/aprs_utils/carrier_detect_led.sh &
sudo /home/marcel/ham/aprs_utils/carrier_detect_led &
# Start filter for received messages to PE1RXF (all sufixes)
# Messages addressed to PE1RXF are stored in file /home/marcel/ham/aprs_utils/aprs_received_messages.log