From baa326b83dccd5bb487e385ed980de8fb6350cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 19 Dec 2018 18:53:48 +0100 Subject: [PATCH] boards/pic32-xx: set FLASHFILE to HEXFILE The boards are using HEXFILE for flashing even if there is no FLASHER for the moment. --- boards/pic32-clicker/Makefile.include | 2 ++ boards/pic32-wifire/Makefile.include | 2 ++ 2 files changed, 4 insertions(+) diff --git a/boards/pic32-clicker/Makefile.include b/boards/pic32-clicker/Makefile.include index 264f0e502c..6e3898c579 100644 --- a/boards/pic32-clicker/Makefile.include +++ b/boards/pic32-clicker/Makefile.include @@ -2,3 +2,5 @@ export CPU = mips_pic32mx export CPU_MODEL=p32mx470f512h export APPDEPS += $(RIOTCPU)/$(CPU)/$(CPU_MODEL)/$(CPU_MODEL).S export USE_UHI_SYSCALLS = 1 + +FLASHFILE ?= $(HEXFILE) diff --git a/boards/pic32-wifire/Makefile.include b/boards/pic32-wifire/Makefile.include index 7e4a7c7387..c07595ef98 100644 --- a/boards/pic32-wifire/Makefile.include +++ b/boards/pic32-wifire/Makefile.include @@ -2,3 +2,5 @@ export CPU = mips_pic32mz export CPU_MODEL=p32mz2048efg100 export APPDEPS += $(RIOTCPU)/$(CPU)/$(CPU_MODEL)/$(CPU_MODEL).S export USE_UHI_SYSCALLS = 1 + +FLASHFILE ?= $(HEXFILE)