Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
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.
 
 
 
 
 
 

229 lines
7.1 KiB

  1. # Copyright 2021 John-Mark Gurney.
  2. #
  3. # Redistribution and use in source and binary forms, with or without
  4. # modification, are permitted provided that the following conditions
  5. # are met:
  6. # 1. Redistributions of source code must retain the above copyright
  7. # notice, this list of conditions and the following disclaimer.
  8. # 2. Redistributions in binary form must reproduce the above copyright
  9. # notice, this list of conditions and the following disclaimer in the
  10. # documentation and/or other materials provided with the distribution.
  11. #
  12. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  13. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  14. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  15. # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  16. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  17. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  18. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  19. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  20. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  21. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  22. # SUCH DAMAGE.
  23. #
  24. ARMOBJDUMP?= arm-none-eabi-objdump
  25. ARMCC?= arm-none-eabi-gcc
  26. ARMTARGET?= -mcpu=cortex-m3 -mthumb -DSTROBE_SINGLE_THREAD=1
  27. # Clang doesn't work due to no-nano libc
  28. #ARMCC?=clang-mp-9.0
  29. #ARMTARGET?= -nostdlib -ffreestanding -target arm-none-eabi -mcpu=cortex-m3 -mfloat-abi=soft -mthumb
  30. PLATFORM != uname -s
  31. .if $(PLATFORM) == "Darwin"
  32. SOEXT=dylib
  33. .else
  34. .error Unsupported platform: $(PLATFORM)
  35. .endif
  36. PROGEXT = .elf
  37. PROGS = lora.gw lora.irr
  38. SRCS.lora.gw = main.c
  39. SRCS.lora.irr = irr_main.c
  40. SRCS.lora.irr+= comms.c
  41. SRCS.lora.irr+= strobe_rng_init.c
  42. SRCS.lora.irr+= $(STROBE_SRCS)
  43. SRCS+= board.c
  44. SRCS+= misc.c
  45. .if 0
  46. SRCS+= rng_save.c
  47. .endif
  48. CFLAGS+= -I$(.CURDIR)
  49. CFLAGS+= -g
  50. #CFLAGS+= -DNDEBUG
  51. # Strobe
  52. .PATH: $(.CURDIR)/strobe
  53. CFLAGS+= -I$(.CURDIR)/strobe
  54. STROBE_SRCS+= strobe.c \
  55. x25519.c
  56. # LoRamac (SX1276) radio code
  57. LORAMAC_SRC = $(.CURDIR)/loramac/src
  58. .PATH: $(LORAMAC_SRC)/radio/sx1276 $(LORAMAC_SRC)/system $(LORAMAC_SRC)/boards/mcu $(LORAMAC_SRC)/boards/NucleoL152
  59. CFLAGS+= -I$(LORAMAC_SRC)/boards
  60. CFLAGS+= -I$(LORAMAC_SRC)/system
  61. CFLAGS+= -I$(LORAMAC_SRC)/radio
  62. CFLAGS+= -DUSE_HAL_DRIVER -DSX1276MB1LAS
  63. SRCS+= sx1276.c
  64. SRCS+= utilities.c
  65. SRCS+= adc.c timer.c delay.c gpio.c uart.c fifo.c
  66. SRCS+= adc-board.c delay-board.c gpio-board.c rtc-board.c lpm-board.c sx1276mb1las-board.c spi-board.c uart-board.c
  67. # Microcontroller
  68. STM32=$(.CURDIR)/stm32
  69. .PATH: $(STM32)/l151ccux
  70. LINKER_SCRIPT=$(STM32)/l151ccux/STM32L151CCUX_FLASH.ld
  71. SRCS+= \
  72. startup_stm32l151ccux.s \
  73. stm32l1xx_hal.c \
  74. stm32l1xx_hal_adc.c \
  75. stm32l1xx_hal_adc_ex.c \
  76. stm32l1xx_hal_cortex.c \
  77. stm32l1xx_hal_dma.c \
  78. stm32l1xx_hal_flash.c \
  79. stm32l1xx_hal_flash_ex.c \
  80. stm32l1xx_hal_gpio.c \
  81. stm32l1xx_hal_pcd.c \
  82. stm32l1xx_hal_pcd_ex.c \
  83. stm32l1xx_hal_pwr.c \
  84. stm32l1xx_hal_pwr_ex.c \
  85. stm32l1xx_hal_rcc.c \
  86. stm32l1xx_hal_rcc_ex.c \
  87. stm32l1xx_hal_rtc.c \
  88. stm32l1xx_hal_rtc_ex.c \
  89. stm32l1xx_hal_spi.c \
  90. stm32l1xx_hal_uart.c \
  91. system_stm32l1xx.c
  92. SRCS+= \
  93. stm32l1xx_it.c \
  94. stm32l1xx_hal_msp.c
  95. CFLAGS+= -I$(STM32)
  96. CFLAGS+= -I$(STM32)/l151ccux
  97. CFLAGS+= -DSTM32L151xC
  98. # USB
  99. .PATH: $(STM32)/usb
  100. SRCS+= \
  101. stm32l1xx_ll_usb.c \
  102. usb_device.c \
  103. usbd_cdc.c \
  104. usbd_cdc_if.c \
  105. usbd_conf.c \
  106. usbd_core.c \
  107. usbd_ctlreq.c \
  108. usbd_desc.c \
  109. usbd_ioreq.c
  110. CFLAGS+= -I$(STM32)/usb
  111. CFLAGS+= -Werror -Wall
  112. LIBLORA_TEST_SRCS= comms.c strobe.c x25519.c
  113. LIBLORA_TEST_OBJS= $(LIBLORA_TEST_SRCS:C/.c$/.no/)
  114. LIBLORA_TEST = liblora_test.$(SOEXT)
  115. $(LIBLORA_TEST): $(LIBLORA_TEST_OBJS)
  116. $(CC) -shared -o $@ $(.ALLSRC)
  117. .MAIN: all
  118. .PHONY: all
  119. DEPENDS = .arm_deps .test_deps
  120. .PHONY: depend
  121. depend: $(DEPENDS)
  122. .for i in $(DEPENDS)
  123. .sinclude "$i"
  124. .endfor
  125. # Temporarily disabled as OpenOCD can't program EEPROM on the STM32L1.
  126. # This could be used to add the data to flash.
  127. rng_save.c: Makefile
  128. ( echo '#include <strobe_rng_init.h>'; \
  129. echo 'const rng_word_t rng_save[roundup(32, sizeof(rng_word_t)) / sizeof(rng_word_t)] __attribute__ ((section (".eeprom"))) = {'; \
  130. dd if=/dev/random bs=32 count=1 | hexdump -e '4/4 " %3u," "\n"'; \
  131. echo '};' \
  132. ) > $@ || (rm $@ && false)
  133. .arm_deps:
  134. $(ARMCC) $(ARMTARGET) $(CFLAGS) $(.ALLSRC) -MM > $@ || (rm -f $@ && false)
  135. .test_deps: $(LIBLORA_TEST_SRCS)
  136. $(CC) $(CFLAGS) $(.ALLSRC) -MM | sed -e 's/\.o:/\.no:/' > $@ || (rm -f $@ && false)
  137. .for i in $(PROGS)
  138. ALLTGTS+= $(i)$(PROGEXT) $(i).list
  139. ASRCS.$(i) = $(SRCS) $(SRCS.$(i))
  140. OBJS.$(i) = $(ASRCS.$(i):C/.c$/.o/)
  141. .arm_deps: $(ASRCS.$(i))
  142. $(i)$(PROGEXT) $(i).map: $(OBJS.$(i))
  143. $(ARMCC) $(ARMTARGET) -o $(i)$(PROGEXT) $(.ALLSRC) -T$(LINKER_SCRIPT) --specs=nosys.specs -Wl,-Map="$(i).map" -Wl,--gc-sections -static --specs=nano.specs -Wl,--start-group -lc -lm -Wl,--end-group
  144. $(i).list: $(i)$(PROGEXT)
  145. $(ARMOBJDUMP) -h -S $(.ALLSRC) > $@ || (rm -f $@ && false)
  146. .endfor
  147. all: $(ALLTGTS)
  148. .PHONY: runbuild
  149. runbuild: $(SRCS)
  150. for i in $(.MAKEFILE_LIST) $(.ALLSRC) $$(cat $(DEPENDS) | gsed ':x; /\\$$/ { N; s/\\\n//; tx }' | sed -e 's/^[^:]*://'); do if [ "$$i" != ".." ]; then echo $$i; fi; done | entr -d sh -c 'echo starting...; cd $(.CURDIR) && $(MAKE) $(.MAKEFLAGS) depend && $(MAKE) $(.MAKEFLAGS) all'
  151. .PHONY: runtests
  152. runtests: Makefile lora_comms.py lora.py loraserv.py multicast.py $(LIBLORA_TEST) $(LIBLORA_TEST_SRCS)
  153. ls $(.ALLSRC) | entr sh -c '(cd $(.CURDIR) && $(MAKE) $(.MAKEFLAGS) $(LIBLORA_TEST)) && ((PYTHONPATH="$(.CURDIR)" python -m coverage run -m unittest lora multicast loraserv && coverage report --omit=$(.CURDIR)/p/\* -m -i) 2>&1 | head -n 30)'
  154. # native objects
  155. .SUFFIXES: .no
  156. .c.no:
  157. $(CC) $(CFLAGS) -c $< -o $@
  158. .c.o:
  159. $(ARMCC) $(ARMTARGET) $(CFLAGS) -c $< -o $@
  160. STROBE_NAME = strobe
  161. STROBE_REPO = https://git.code.sf.net/p/strobe/code
  162. STROBE_BRANCH = master
  163. LORAMAC_NAME = loramac
  164. LORAMAC_REPO = https://github.com/Lora-net/LoRaMac-node.git
  165. LORAMAC_BRANCH = master
  166. .for module in STROBE LORAMAC
  167. .PHONY: init-$($(module)_NAME)
  168. init-$($(module)_NAME):
  169. git subtree add -P $($(module)_NAME) --squash $($(module)_REPO) $($(module)_BRANCH)
  170. .PHONY: update-$($(module)_NAME)
  171. update-$($(module)_NAME):
  172. git subtree pull -P $($(module)_NAME) --squash $($(module)_REPO) $($(module)_BRANCH)
  173. .endfor
  174. # Making diagrams, imported from fbsdembdev
  175. # =========================================
  176. # https://github.com/ironcamel/Graph-Easy
  177. .SUFFIXES: .getxt .diag .html
  178. .getxt.diag: box.sh
  179. graph-easy < $< | sh $(.CURDIR)/box.sh > $@
  180. .diag.html:
  181. (cat $<; echo; echo '<!-- Markdeep: --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="markdeep.min.js" charset="utf-8"></script><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js" charset="utf-8"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>') > $@
  182. DIAG?=diag
  183. test-diag:
  184. ls $(.CURDIR)/box.sh $(.CURDIR)/$(DIAG).getxt $(.CURDIR)/Makefile | entr sh -c 'cd $(.CURDIR) && $(MAKE) $(.MAKEFLAGS) $(DIAG).diag && cat $(MAKEOBJDIR)/$(DIAG).diag'