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.
 
 
 
 
 
 

13 lines
311 B

  1. ARMCC = arm-none-eabi-gcc
  2. STROBE_REPO = https://git.code.sf.net/p/strobe/code
  3. STROBE_BRANCH = master
  4. .PHONY: init-strobe
  5. init-strobe:
  6. git subtree add -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)
  7. .PHONY: update-strobe
  8. update-strobe:
  9. git subtree pull -P strobe --squash $(STROBE_REPO) $(STROBE_BRANCH)