library conflict _reset corrected

pull/1/head
Alan Johnston 7 years ago
parent f5b50cb71c
commit 90353f214f

@ -51,7 +51,7 @@ radiocw: cw/cw_main.o
radiocw: afsk/ax25.o radiocw: afsk/ax25.o
radiocw: afsk/ax5043.o radiocw: afsk/ax5043.o
radiocw: afsk/send_afsk.o radiocw: afsk/send_afsk.o
gcc -o radiocw -pedantic -Wall -Wextra -L./ afsk/ax5043.o cw/cw_main.o -lwiringPi -lax5043 gcc -o radiocw -L./ afsk/ax25.o afsk/ax5043.o afsk/send_afsk.o cw/cw_main.o -lwiringPi -lax5043
radiopiglatin: libax5043.a radiopiglatin: libax5043.a
radiopiglatin: piglatin/piglatin_main.o radiopiglatin: piglatin/piglatin_main.o

@ -77,7 +77,7 @@ static uint8_t is_ax5043_conf_valid(ax5043_conf_t *conf) {
* @param conf the AX5043 configuration handler * @param conf the AX5043 configuration handler
* @return 0 on success or appropriate negative error code * @return 0 on success or appropriate negative error code
*/ */
int ax5043_reset(ax5043_conf_t *conf) { int ax5043_reset_a(ax5043_conf_t *conf) {
int ret; int ret;
uint8_t val; uint8_t val;
@ -152,7 +152,7 @@ int ax5043_init(ax5043_conf_t *conf, uint32_t f_xtal, vco_mode_t vco) {
conf->f_xtaldiv = 1; conf->f_xtaldiv = 1;
} }
ret = ax5043_reset(conf); ret = ax5043_reset_a(conf);
if (ret) { if (ret) {
return ret; return ret;
} }

@ -527,7 +527,7 @@ typedef struct {
vco_mode_t vco; vco_mode_t vco;
} ax5043_conf_t; } ax5043_conf_t;
int ax5043_reset(ax5043_conf_t *conf); int ax5043_reset_a(ax5043_conf_t *conf);
int ax5043_init(ax5043_conf_t *conf, uint32_t f_xtal, vco_mode_t vco); int ax5043_init(ax5043_conf_t *conf, uint32_t f_xtal, vco_mode_t vco);

@ -1,6 +1,5 @@
// Sends CubeSatSim telemetry encoded as CW (Morse Code) using AO-7 format // Sends CubeSatSim telemetry encoded as CW (Morse Code) using AO-7 format
// //
//
// Portions Copyright (c) 2018 Brandenburg Tech, LLC // Portions Copyright (c) 2018 Brandenburg Tech, LLC
// All right reserved. // All right reserved.
// //

Loading…
Cancel
Save

Powered by TurnKey Linux.