2015-02-06 14:35:48 +00:00
|
|
|
/*
|
2017-06-30 07:22:17 +00:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2015-02-06 14:35:48 +00:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Daniel Campora
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2015-02-21 18:58:43 +00:00
|
|
|
#include "py/mpconfig.h"
|
2015-10-30 23:03:58 +00:00
|
|
|
#include "py/mphal.h"
|
2015-02-06 14:35:48 +00:00
|
|
|
#include "mptask.h"
|
|
|
|
#include "simplelink.h"
|
2015-02-25 10:08:51 +00:00
|
|
|
#include "pybwdt.h"
|
2015-02-06 14:35:48 +00:00
|
|
|
#include "debug.h"
|
2015-06-06 16:42:51 +00:00
|
|
|
#include "antenna.h"
|
2015-02-26 14:03:52 +00:00
|
|
|
#include "mperror.h"
|
2016-05-31 16:27:21 +00:00
|
|
|
#include "task.h"
|
2015-02-06 14:35:48 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
DECLARE PRIVATE CONSTANTS
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
DECLARE PRIVATE FUNCTIONS
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
DECLARE PRIVATE DATA
|
|
|
|
******************************************************************************/
|
|
|
|
|
2016-06-05 12:01:16 +00:00
|
|
|
// This is the static memory (TCB and stack) for the idle task
|
2020-06-16 14:34:51 +00:00
|
|
|
static StaticTask_t xIdleTaskTCB __attribute__ ((section(".rtos_heap")));
|
|
|
|
static StackType_t uxIdleTaskStack[configMINIMAL_STACK_SIZE] __attribute__ ((section(".rtos_heap"))) __attribute__((aligned(8)));
|
2016-06-05 12:01:16 +00:00
|
|
|
|
2015-02-06 14:35:48 +00:00
|
|
|
/******************************************************************************
|
|
|
|
DECLARE PUBLIC DATA
|
|
|
|
******************************************************************************/
|
|
|
|
#ifdef DEBUG
|
2020-02-27 04:36:53 +00:00
|
|
|
OsiTaskHandle mpTaskHandle;
|
2015-02-06 14:35:48 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-27 13:28:15 +00:00
|
|
|
// This is the FreeRTOS heap, defined here so we can put it in a special segment
|
2020-06-16 14:34:51 +00:00
|
|
|
uint8_t ucHeap[ configTOTAL_HEAP_SIZE ] __attribute__ ((section(".rtos_heap"))) __attribute__((aligned(8)));
|
2016-05-27 13:28:15 +00:00
|
|
|
|
2016-05-31 16:27:21 +00:00
|
|
|
// This is the static memory (TCB and stack) for the main MicroPython task
|
2020-06-16 14:34:51 +00:00
|
|
|
StaticTask_t mpTaskTCB __attribute__ ((section(".rtos_heap")));
|
|
|
|
StackType_t mpTaskStack[MICROPY_TASK_STACK_LEN] __attribute__ ((section(".rtos_heap"))) __attribute__((aligned(8)));
|
2016-05-31 16:27:21 +00:00
|
|
|
|
2015-02-06 14:35:48 +00:00
|
|
|
/******************************************************************************
|
|
|
|
DEFINE PUBLIC FUNCTIONS
|
|
|
|
******************************************************************************/
|
|
|
|
|
2020-06-16 14:34:51 +00:00
|
|
|
__attribute__ ((section(".boot")))
|
|
|
|
int main(void) {
|
2015-02-06 14:35:48 +00:00
|
|
|
|
|
|
|
// Initialize the clocks and the interrupt system
|
|
|
|
HAL_SystemInit();
|
|
|
|
|
2020-02-27 04:36:53 +00:00
|
|
|
#if MICROPY_HW_ANTENNA_DIVERSITY
|
2015-06-06 16:42:51 +00:00
|
|
|
// configure the antenna selection pins
|
|
|
|
antenna_init0();
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2015-06-06 16:42:51 +00:00
|
|
|
|
2015-02-25 21:38:33 +00:00
|
|
|
// Init the watchdog
|
2015-02-25 10:08:51 +00:00
|
|
|
pybwdt_init0();
|
|
|
|
|
2020-02-27 04:36:53 +00:00
|
|
|
#ifndef DEBUG
|
2016-05-31 16:27:21 +00:00
|
|
|
OsiTaskHandle mpTaskHandle;
|
2020-02-27 04:36:53 +00:00
|
|
|
#endif
|
2017-07-15 09:39:05 +00:00
|
|
|
mpTaskHandle = xTaskCreateStatic(TASK_MicroPython, "MicroPy",
|
2016-05-31 16:27:21 +00:00
|
|
|
MICROPY_TASK_STACK_LEN, NULL, MICROPY_TASK_PRIORITY, mpTaskStack, &mpTaskTCB);
|
|
|
|
ASSERT(mpTaskHandle != NULL);
|
2015-02-06 14:35:48 +00:00
|
|
|
|
|
|
|
osi_start();
|
|
|
|
|
2020-02-27 04:36:53 +00:00
|
|
|
for ( ; ;) {;
|
|
|
|
}
|
2015-02-06 14:35:48 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 16:35:46 +00:00
|
|
|
// We need this when configSUPPORT_STATIC_ALLOCATION is enabled
|
2020-03-20 10:47:07 +00:00
|
|
|
void vApplicationGetIdleTaskMemory(StaticTask_t **ppxIdleTaskTCBBuffer,
|
2020-02-27 04:36:53 +00:00
|
|
|
StackType_t **ppxIdleTaskStackBuffer,
|
2020-03-20 10:47:07 +00:00
|
|
|
uint32_t *pulIdleTaskStackSize) {
|
2016-05-27 16:35:46 +00:00
|
|
|
*ppxIdleTaskTCBBuffer = &xIdleTaskTCB;
|
|
|
|
*ppxIdleTaskStackBuffer = uxIdleTaskStack;
|
|
|
|
*pulIdleTaskStackSize = configMINIMAL_STACK_SIZE;
|
|
|
|
}
|