diff options
| author | Stephane D'Alu <sdalu@sdalu.com> | 2016-07-10 00:10:48 +0200 | 
|---|---|---|
| committer | Stephane D'Alu <sdalu@sdalu.com> | 2016-07-10 00:10:48 +0200 | 
| commit | 7557cbac22ac5da99fa5681f3d311277bebbbaae (patch) | |
| tree | 17a9af7a2b9e373502571dbe5f472668e585390d | |
| parent | a6fa2d3dd9403223c94f81ce655f83b6891b4ebc (diff) | |
| download | ChibiOS-Contrib-7557cbac22ac5da99fa5681f3d311277bebbbaae.tar.gz ChibiOS-Contrib-7557cbac22ac5da99fa5681f3d311277bebbbaae.tar.bz2 ChibiOS-Contrib-7557cbac22ac5da99fa5681f3d311277bebbbaae.zip  | |
serie -> series
| -rw-r--r-- | os/hal/ports/NRF5/LLD/hal_pal_lld.h | 4 | ||||
| -rw-r--r-- | os/hal/ports/NRF5/LLD/hal_serial_lld.c | 4 | ||||
| -rw-r--r-- | os/hal/ports/NRF5/NRF51822/hal_lld.h | 4 | ||||
| -rw-r--r-- | os/hal/ports/NRF5/NRF52832/hal_lld.c | 4 | ||||
| -rw-r--r-- | os/hal/ports/NRF5/NRF52832/hal_lld.h | 6 | 
5 files changed, 11 insertions, 11 deletions
diff --git a/os/hal/ports/NRF5/LLD/hal_pal_lld.h b/os/hal/ports/NRF5/LLD/hal_pal_lld.h index da2da74..40a2c5e 100644 --- a/os/hal/ports/NRF5/LLD/hal_pal_lld.h +++ b/os/hal/ports/NRF5/LLD/hal_pal_lld.h @@ -128,9 +128,9 @@ typedef NRF_GPIO_Type *ioportid_t;   * @details Low level drivers can define multiple ports, it is suggested to
   *          use this naming convention.
   */
 -#if   NRF_SERIE == 51
 +#if   NRF_SERIES == 51
  #define IOPORT1         NRF_GPIO
 -#elif NRF_SERIE == 52
 +#elif NRF_SERIES == 52
  #define IOPORT1         NRF_P0
  #endif
 diff --git a/os/hal/ports/NRF5/LLD/hal_serial_lld.c b/os/hal/ports/NRF5/LLD/hal_serial_lld.c index cba7804..e67b433 100644 --- a/os/hal/ports/NRF5/LLD/hal_serial_lld.c +++ b/os/hal/ports/NRF5/LLD/hal_serial_lld.c @@ -26,9 +26,9 @@  #if (HAL_USE_SERIAL == TRUE) || defined(__DOXYGEN__)
 -#if   NRF_SERIE == 51
 +#if   NRF_SERIES == 51
  #include "nrf51.h"
 -#elif NRF_SERIE == 52
 +#elif NRF_SERIES == 52
  #include "nrf52.h"
  #define UART0_IRQn UARTE0_UART0_IRQn
  #endif
 diff --git a/os/hal/ports/NRF5/NRF51822/hal_lld.h b/os/hal/ports/NRF5/NRF51822/hal_lld.h index b05d8b6..c520a43 100644 --- a/os/hal/ports/NRF5/NRF51822/hal_lld.h +++ b/os/hal/ports/NRF5/NRF51822/hal_lld.h @@ -30,9 +30,9 @@  /*===========================================================================*/  /** - * @name    Chip serie + * @name    Chip series   */ -#define NRF_SERIE 51 +#define NRF_SERIES 51  /**   * @name    Platform identification diff --git a/os/hal/ports/NRF5/NRF52832/hal_lld.c b/os/hal/ports/NRF5/NRF52832/hal_lld.c index af5e377..0fc8c27 100644 --- a/os/hal/ports/NRF5/NRF52832/hal_lld.c +++ b/os/hal/ports/NRF5/NRF52832/hal_lld.c @@ -15,8 +15,8 @@  */  /** - * @file    NRF51/NRF51822/hal_lld.c - * @brief   NRF51822 HAL Driver subsystem low level driver source. + * @file    NRF5/NRF52832/hal_lld.c + * @brief   NRF52832 HAL Driver subsystem low level driver source.   *   * @addtogroup HAL   * @{ diff --git a/os/hal/ports/NRF5/NRF52832/hal_lld.h b/os/hal/ports/NRF5/NRF52832/hal_lld.h index e2c911b..c376b11 100644 --- a/os/hal/ports/NRF5/NRF52832/hal_lld.h +++ b/os/hal/ports/NRF5/NRF52832/hal_lld.h @@ -1,5 +1,5 @@  /* -    Copyright (C) 2015 Fabio Utzig +    Copyright (C) 2016 Stephane D'Alu      Licensed under the Apache License, Version 2.0 (the "License");      you may not use this file except in compliance with the License. @@ -30,9 +30,9 @@  /*===========================================================================*/  /** - * @name    Chip serie + * @name    Chip series   */ -#define NRF_SERIE 52 +#define NRF_SERIES 52  /**   * @name    Platform identification  | 
