From 3050565531af2b3a09f2213893f10c64cf9fe43f Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 24 Feb 2021 19:50:20 +0100 Subject: added test app with voice, wifi/cellular data connectivity examples --- fw/fe310/bsp/include/sifive/devices/prci.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fw/fe310/bsp/include/sifive/devices/prci.h') diff --git a/fw/fe310/bsp/include/sifive/devices/prci.h b/fw/fe310/bsp/include/sifive/devices/prci.h index 1a3de58..d46da08 100644 --- a/fw/fe310/bsp/include/sifive/devices/prci.h +++ b/fw/fe310/bsp/include/sifive/devices/prci.h @@ -12,13 +12,13 @@ #define PRCI_PROCMONCFG (0x00F0) /* Fields */ -#define ROSC_DIV(x) (((x) & 0x2F) << 0 ) +#define ROSC_DIV(x) (((x) & 0x2F) << 0 ) #define ROSC_TRIM(x) (((x) & 0x1F) << 16) -#define ROSC_EN(x) (((x) & 0x1 ) << 30) +#define ROSC_EN(x) (((x) & 0x1 ) << 30) #define ROSC_RDY(x) (((x) & 0x1 ) << 31) -#define XOSC_EN(x) (((x) & 0x1) << 30) -#define XOSC_RDY(x) (((x) & 0x1) << 31) +#define XOSC_EN(x) (((x) & 0x1) << 30) +#define XOSC_RDY(x) (((x) & 0x1) << 31) #define PLL_R(x) (((x) & 0x7) << 0) // single reserved bit for F LSB. -- cgit v1.2.3