A simple library for building and parsing data frames for serial interfaces (like UART / RS232)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
cmake_minimum_required(VERSION 3.7)
|
|
|
|
project(tf)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD GNU89)
|
|
|
|
|
|
|
|
set(SOURCE_FILES
|
|
|
|
test.c
|
|
|
|
TinyFrame.c
|
|
|
|
TinyFrame.h)
|
|
|
|
|
|
|
|
add_executable(tf ${SOURCE_FILES})
|