2015-02-06 09:35:48 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* 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 <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-02-21 13:58:43 -05:00
|
|
|
#include "py/mpconfig.h"
|
2015-02-06 09:35:48 -05:00
|
|
|
#include MICROPY_HAL_H
|
2015-02-21 13:58:43 -05:00
|
|
|
#include "py/obj.h"
|
2015-02-06 09:35:48 -05:00
|
|
|
#include "inc/hw_memmap.h"
|
|
|
|
#include "pybuart.h"
|
|
|
|
#include "osi.h"
|
|
|
|
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
//! \brief Application defined idle task hook
|
|
|
|
//!
|
|
|
|
//! \param none
|
|
|
|
//!
|
|
|
|
//! \return none
|
|
|
|
//!
|
|
|
|
//*****************************************************************************
|
|
|
|
void
|
|
|
|
vApplicationIdleHook( void)
|
|
|
|
{
|
|
|
|
//Handle Idle Hook for Profiling, Power Management etc
|
|
|
|
__WFI();
|
|
|
|
}
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
//! \brief Application defined malloc failed hook
|
|
|
|
//!
|
|
|
|
//! \param none
|
|
|
|
//!
|
|
|
|
//! \return none
|
|
|
|
//!
|
|
|
|
//*****************************************************************************
|
|
|
|
void vApplicationMallocFailedHook()
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Break into the debugger
|
|
|
|
__asm volatile ("bkpt #0 \n");
|
|
|
|
|
|
|
|
printf("\nFATAL ERROR: FreeRTOS malloc failed!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//Handle Memory Allocation Errors
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
//! \brief Application defined stack overflow hook
|
|
|
|
//!
|
|
|
|
//! \param none
|
|
|
|
//!
|
|
|
|
//! \return none
|
|
|
|
//!
|
|
|
|
//*****************************************************************************
|
|
|
|
void vApplicationStackOverflowHook( OsiTaskHandle *pxTask, signed char *pcTaskName)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Break into the debugger
|
|
|
|
__asm volatile ("bkpt #0 \n");
|
|
|
|
|
|
|
|
printf("\nFATAL ERROR: Application: %s stack overflow!\n", pcTaskName);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//Handle FreeRTOS Stack Overflow
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
//! \brief Application defined tick hook
|
|
|
|
//!
|
|
|
|
//! \param none
|
|
|
|
//!
|
|
|
|
//! \return none
|
|
|
|
//!
|
|
|
|
//*****************************************************************************
|
|
|
|
void vApplicationTickHook( void )
|
|
|
|
{
|
|
|
|
HAL_IncrementTick();
|
|
|
|
}
|