Fix astyle issues

pull/14325/head
George Beckstein 2021-02-23 10:03:04 -05:00
parent ec9d647c31
commit 0212fde7fb
5 changed files with 52 additions and 50 deletions

View File

@ -26,10 +26,10 @@
* Override the subtarget sdk init startup hook (specific to nRF2)
* This will configure the internal regulator to operate at 3.3V
*/
void subtarget_sdk_init(void) {
if (NRF_UICR->REGOUT0 != UICR_REGOUT0_VOUT_3V3)
void subtarget_sdk_init(void)
{
if (NRF_UICR->REGOUT0 != UICR_REGOUT0_VOUT_3V3) {
NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Wen << NVMC_CONFIG_WEN_Pos;
while (NRF_NVMC->READY == NVMC_READY_READY_Busy) {}
NRF_UICR->REGOUT0 = UICR_REGOUT0_VOUT_3V3;

View File

@ -26,7 +26,8 @@
#if MBED_CONF_EP_ATLAS_ENABLE_USB_STDIO_CONSOLE
/* Retarget stdio to USBSerial */
mbed::FileHandle *mbed::mbed_target_override_console(int fd) {
mbed::FileHandle *mbed::mbed_target_override_console(int fd)
{
static USBSerial usb_serial;
return &usb_serial;
}

View File

@ -19,6 +19,7 @@
#include "subtarget_init.h"
#include "platform/mbed_toolchain.h"
MBED_WEAK void subtarget_sdk_init(void) {
MBED_WEAK void subtarget_sdk_init(void)
{
/* Do nothing by default */
}