fixed project configuration

pull/2/head
Mateusz Lubecki 2018-05-01 09:24:37 +02:00
rodzic 06e970e5d7
commit 39f3877704
8 zmienionych plików z 3613 dodań i 1159 usunięć

Plik binarny nie jest wyświetlany.

Plik diff jest za duży Load Diff

Plik diff jest za duży Load Diff

Wyświetl plik

@ -13,6 +13,7 @@ C_SRCS += \
CPP_SRCS += \
../src/BlinkLed.cpp \
../src/Timer.cpp \
../src/main.cpp
OBJS += \
@ -20,6 +21,7 @@ OBJS += \
./src/KissCommunication.o \
./src/LedConfig.o \
./src/PathConfig.o \
./src/Timer.o \
./src/TimerConfig.o \
./src/_write.o \
./src/it_handlers.o \
@ -35,6 +37,7 @@ C_DEPS += \
CPP_DEPS += \
./src/BlinkLed.d \
./src/Timer.d \
./src/main.d

Wyświetl plik

@ -7,6 +7,7 @@ C_SRCS += \
../system/src/stm32f1-stdperiph/misc.c \
../system/src/stm32f1-stdperiph/stm32f10x_gpio.c \
../system/src/stm32f1-stdperiph/stm32f10x_i2c.c \
../system/src/stm32f1-stdperiph/stm32f10x_iwdg.c \
../system/src/stm32f1-stdperiph/stm32f10x_rcc.c \
../system/src/stm32f1-stdperiph/stm32f10x_tim.c \
../system/src/stm32f1-stdperiph/stm32f10x_usart.c
@ -15,6 +16,7 @@ OBJS += \
./system/src/stm32f1-stdperiph/misc.o \
./system/src/stm32f1-stdperiph/stm32f10x_gpio.o \
./system/src/stm32f1-stdperiph/stm32f10x_i2c.o \
./system/src/stm32f1-stdperiph/stm32f10x_iwdg.o \
./system/src/stm32f1-stdperiph/stm32f10x_rcc.o \
./system/src/stm32f1-stdperiph/stm32f10x_tim.o \
./system/src/stm32f1-stdperiph/stm32f10x_usart.o
@ -23,6 +25,7 @@ C_DEPS += \
./system/src/stm32f1-stdperiph/misc.d \
./system/src/stm32f1-stdperiph/stm32f10x_gpio.d \
./system/src/stm32f1-stdperiph/stm32f10x_i2c.d \
./system/src/stm32f1-stdperiph/stm32f10x_iwdg.d \
./system/src/stm32f1-stdperiph/stm32f10x_rcc.d \
./system/src/stm32f1-stdperiph/stm32f10x_tim.d \
./system/src/stm32f1-stdperiph/stm32f10x_usart.d

Wyświetl plik

@ -15,16 +15,16 @@
//#define _METEO
//#define _DIGI // Comment this do disable WIDE1-1 digipeating
#define _MUTE_RF // TODO: Not yet implemented - This will make station RXonly and disable all data transmission
#define _MUTE_OWN // TODO: Not yet implemented - This will disable all self-generated packets (wx, telemetry, beacon)
//#define _MUTE_RF // TODO: Not yet implemented - This will make station RXonly and disable all data transmission
//#define _MUTE_OWN // TODO: Not yet implemented - This will disable all self-generated packets (wx, telemetry, beacon)
// and switch device to "pure" kiss TNC operation. Packets from PC will be transmitted normally.
// Coordines should be in APRS decimal format DDDMM.SS for Longitude and DDMM.SS for latitude
#define _CALL "NOCALL"
#define _SSID 12
#define _LAT 5000.00
#define _CALL "SP8EBC"
#define _SSID 11
#define _LAT 4948.82
#define _LATNS 'N'
#define _LON 02000.00
#define _LON 01903.50
#define _LONWE 'E'
#define _COMMENT "ParaTNC v1.0.1-05092017 by Mateusz SP8EBC"
@ -45,12 +45,12 @@
#define _WIDE21_PATH // CALL-S>AKLPRZ,WIDE2-1:data
// Comment this to disable beacon auto sending during startup (this can be risky if RF feedback occur)
//#define _BCN_ON_STARTUP
#define _BCN_ON_STARTUP
#define _WX_INTERVAL 4 // WX packet interval in minutes
#define _BCN_INTERVAL 10 // Own beacon interval in minutes
//#define _PTT_PUSHPULL // Uncomment this if you want PTT line to work as Push-pull instead of Open Drain
#define _PTT_PUSHPULL // Uncomment this if you want PTT line to work as Push-pull instead of Open Drain
#define _SERIAL_BAUDRATE 19200
// Transmitting delay

Wyświetl plik

@ -8,9 +8,9 @@
#include <stdbool.h>
#include <cfifo.h>
#include <macros.h>
#include <config.h>
#include "cfifo.h"
#include "macros.h"
#include "config.h"

Wyświetl plik

@ -6,11 +6,11 @@
#endif
#include <stdbool.h>
#include <cfifo.h>
#include <afsk.h>
#include "cfifo.h"
#include "afsk.h"
#include <macros.h>
#include <config.h>
#include "macros.h"
#include "config.h"
/**
* Maximum size of a AX25 frame.