1-Wire tester, shows ROM code and temperature on an LCD screen
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.
 
 
 
 
1wire-tester/CMakeLists.txt

29 lines
515 B

cmake_minimum_required(VERSION 3.7)
project(firmware)
# Fake CMake config for CLion
set(CMAKE_CXX_STANDARD GNU99)
set(SOURCE_FILES
main.c
lib/calc.h
lib/iopins.c
lib/iopins.h
lib/nsdelay.h
lib/spi.c
lib/spi.h
lib/adc.c
lib/adc.h
lib/usart.c
lib/usart.h
lcd.c
lcd.h
)
include_directories(lib
/usr/avr/include/)
add_definitions(-D__AVR_ATmega328P__)
add_executable(firmware ${SOURCE_FILES})