mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
See 'rigs/simplecat/SIMPLE_CAT_PROTOCOL.md' for the protocol spec.
Notes:
- Memory correctness checks were done using Valgrind.
- Tested with wsjtx-3.1.0_improved_PLUS_260228.tgz (with mods) and
Bunzee Labs' DDX HF Digital Transceiver
https://bunzee-labs.com/products/ddx
Tested on:
- Ubuntu Linux
- macOS Tahoe
- Windows 11
(cherry picked from commit debe6fcaf9)
12 lines
232 B
Makefile
12 lines
232 B
Makefile
# Android makefile for Simple CAT rig
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libhamlib-simplecat
|
|
LOCAL_SRC_FILES = simplecat.c
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../..
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|