Чуть правленные исходники v3.11 1.11: изменен делитель тактирования spi + частота кварца для мастер станции

This commit is contained in:
2025-10-03 09:48:30 +03:00
parent df18fedc7f
commit 3f886d0f98
94 changed files with 19758 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
build-*
tags
File diff suppressed because it is too large Load Diff
+55
View File
@@ -0,0 +1,55 @@
# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile
ifndef ARDMK_DIR
$(error You should define ARDMK_DIR as enviroment variable or command line argument. See https://github.com/sudar/Arduino-Makefile)
endif
ifndef ARDUINO_DIR
$(error You should define ARDUINO_DIR as enviroment variable or command line argument. See https://github.com/sudar/Arduino-Makefile)
endif
ARDUINO_SKETCHBOOK = ..
BOARD_TAG = sportiduino
ARDUINO_LIBS = sportiduino-common SPI EEPROM RFID Adafruit_SleepyDog_Library ds3231-master Wire PinChangeInterrupt
BOARDS_TXT = ../boards.txt
BOOTLOADER_PARENT = ..
BOOTLOADER_PATH = Optiboot
#BOOTLOADER_FILE = optiboot8_38400_sportiduino_led.hex
BOOTLOADER_FILE = optiboot8_19200_sportiduino_led.hex
ISP_PROG = stk500v1
AVRDUDE_ISP_BAUDRATE = 19200
AVRDUDE_ARD_BAUDRATE = 19200
ifdef port
MONITOR_PORT = $(port)
ISP_PORT = $(port)
endif
ifdef debug
CXXFLAGS += -DDEBUG
endif
ifdef buzzfreq
CXXFLAGS += -DBUZZER_FREQUENCY=$(buzzfreq)
endif
ifdef pcbv
CXXFLAGS += -DHW_VERS=$(pcbv)
endif
ifdef nopoll
CXXFLAGS += -DNO_POLL_CARDS_IN_SLEEP_MODE
endif
ifdef check_battery
CXXFLAGS += -DCHECK_BATTERY_IN_SLEEP
endif
ifdef silent
CXXFLAGS += -DSILENT_BEEP
endif
$(info CXXFLAGS = $(CXXFLAGS))
include $(ARDMK_DIR)/Arduino.mk