mpconfigboard.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2016 Glenn Ruben Bakke
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #define MICROPY_HW_BOARD_NAME "PCA10001"
  27. #define MICROPY_HW_MCU_NAME "NRF51822"
  28. #define MICROPY_PY_SYS_PLATFORM "nrf51-DK"
  29. #define MICROPY_PY_MACHINE_UART (1)
  30. #define MICROPY_PY_MACHINE_HW_SPI (0)
  31. #define MICROPY_PY_MACHINE_TIMER (1)
  32. #define MICROPY_PY_MACHINE_RTCOUNTER (1)
  33. #define MICROPY_PY_MACHINE_I2C (1)
  34. #define MICROPY_PY_MACHINE_ADC (1)
  35. #define MICROPY_PY_MACHINE_TEMP (1)
  36. #define MICROPY_PY_RANDOM_HW_RNG (1)
  37. #define MICROPY_HW_HAS_LED (1)
  38. #define MICROPY_HW_LED_COUNT (2)
  39. #define MICROPY_HW_LED_PULLUP (0)
  40. #define MICROPY_HW_LED1 (18) // LED1
  41. #define MICROPY_HW_LED2 (19) // LED2
  42. // UART config
  43. #define MICROPY_HW_UART1_RX (11)
  44. #define MICROPY_HW_UART1_TX (9)
  45. #define MICROPY_HW_UART1_CTS (10)
  46. #define MICROPY_HW_UART1_RTS (8)
  47. #define MICROPY_HW_UART1_HWFC (0)
  48. #define HELP_TEXT_BOARD_LED "1,2"