From 2b92e70da7e884b7a5e80aee29c1f7adcb750df2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 31 Oct 2019 22:00:40 +1100 Subject: [PATCH] AP_Periph: support STM32F303 builds --- Tools/AP_Periph/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/AP_Periph/wscript b/Tools/AP_Periph/wscript index c838e0e771..bd0f9788a7 100644 --- a/Tools/AP_Periph/wscript +++ b/Tools/AP_Periph/wscript @@ -4,7 +4,7 @@ import fnmatch def build(bld): - targets = ['f103-*', 'CUAV_GPS', 'ZubaxGNSS*'] + targets = ['f103-*', 'f303-*', 'CUAV_GPS', 'ZubaxGNSS*'] valid_target = False for t in targets: if fnmatch.fnmatch(bld.env.BOARD, t):