2016-12-13 15:38:39 -05:00
|
|
|
/*
|
2017-08-04 12:05:38 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2016-12-13 15:38:39 -05:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Glenn Ruben Bakke
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MICROPY_HW_BOARD_NAME "PCA10056"
|
2018-07-08 09:04:41 -04:00
|
|
|
#define MICROPY_HW_MCU_NAME "nRF52840"
|
2018-07-09 15:02:52 -04:00
|
|
|
#define MICROPY_PY_SYS_PLATFORM "nRF52840-DK"
|
2016-12-16 19:27:58 -05:00
|
|
|
|
2018-08-30 21:42:25 -04:00
|
|
|
// See legend on bottom of board
|
2018-07-08 09:17:06 -04:00
|
|
|
#define MICROPY_HW_UART_RX NRF_GPIO_PIN_MAP(0, 8)
|
|
|
|
#define MICROPY_HW_UART_TX NRF_GPIO_PIN_MAP(0, 6)
|
|
|
|
#define MICROPY_HW_UART_HWFC (0)
|
2018-02-02 15:01:01 -05:00
|
|
|
|
2018-07-08 09:04:41 -04:00
|
|
|
#define PORT_HEAP_SIZE (128 * 1024)
|
2018-02-02 15:01:01 -05:00
|
|
|
#define CIRCUITPY_AUTORELOAD_DELAY_MS 500
|
2018-07-06 03:39:49 -04:00
|
|
|
|
|
|
|
// Temp (could be removed) 0: usb cdc (default), 1 : hwuart (jlink)
|
|
|
|
#define CFG_HWUART_FOR_SERIAL 0
|