The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
170:e95d10626187
Parent:
163:e59c8e839560
--- a/TARGET_DISCO_F303VC/TARGET_STM/TARGET_STM32F3/pin_device.h	Fri Jun 22 15:38:59 2018 +0100
+++ b/TARGET_DISCO_F303VC/TARGET_STM/TARGET_STM32F3/pin_device.h	Thu Sep 06 13:39:34 2018 +0100
@@ -57,14 +57,15 @@
     }
 }
 
-static inline void stm_pin_SetAFPin( GPIO_TypeDef *gpio, PinName pin, uint32_t afnum)
+static inline void stm_pin_SetAFPin(GPIO_TypeDef *gpio, PinName pin, uint32_t afnum)
 {
     uint32_t ll_pin  = ll_pin_defines[STM_PIN(pin)];
 
-    if (STM_PIN(pin) > 7)
+    if (STM_PIN(pin) > 7) {
         LL_GPIO_SetAFPin_8_15(gpio, ll_pin, afnum);
-    else
+    } else {
         LL_GPIO_SetAFPin_0_7(gpio, ll_pin, afnum);
+    }
 }
 
 #endif