Compare commits
20 Commits
Branch_Dev
...
Develop_Ev
| Author | SHA1 | Date | |
|---|---|---|---|
| 8862e54265 | |||
| b7c27bc14f | |||
| 293d9b3be1 | |||
| d587362102 | |||
| d0892c2256 | |||
| aa36ca5d96 | |||
| 711f15677d | |||
| 6337bafb99 | |||
| 0a96026659 | |||
| cdb997cc8a | |||
| f35fba223c | |||
| 762b604ba6 | |||
| eacd045dfd | |||
| 2ea3d7e844 | |||
| c9defe4bc5 | |||
| 35d5e78a6d | |||
| 9eab78d648 | |||
| 8fab7d67c4 | |||
| 1b7f3c470d | |||
| 473660f75a |
@ -42,6 +42,11 @@
|
||||
} \
|
||||
}
|
||||
|
||||
|
||||
#define __SYSTEM_CLOCK_180M_PLLP_40M_HXTAL (uint32_t)(180000000)
|
||||
|
||||
uint32_t SystemCoreClock = __SYSTEM_CLOCK_180M_PLLP_40M_HXTAL;
|
||||
|
||||
/*!
|
||||
\brief configure the system clock to HXTAL
|
||||
\param[in] none
|
||||
|
||||
@ -34,6 +34,8 @@ OF SUCH DAMAGE.
|
||||
|
||||
#include "gd32w51x_it.h"
|
||||
#include "rom_export.h"
|
||||
#include <systick.h>
|
||||
#include <irq_handle.h>
|
||||
|
||||
/*!
|
||||
\brief this function handles NMI exception
|
||||
@ -127,3 +129,25 @@ void UsageFault_Handler(void)
|
||||
while(1){
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief this function handles SysTick exception
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void SysTick_Handler(void)
|
||||
{
|
||||
delay_decrement();
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief This function handles TIMER2 interrupt request.
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void TIMER2_IRQHandler(void)
|
||||
{
|
||||
__TIMER2_IRQHandler();
|
||||
}
|
||||
|
||||
112
MBL/platform/gdm32/systick.c
Normal file
112
MBL/platform/gdm32/systick.c
Normal file
@ -0,0 +1,112 @@
|
||||
/*!
|
||||
\file systick.c
|
||||
\brief the systick configuration file
|
||||
|
||||
\version 2021-10-30, V1.0.0, firmware for GD32W51x
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright (c) 2021, GigaDevice Semiconductor Inc.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
||||
OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "gd32w51x.h"
|
||||
#include "systick.h"
|
||||
|
||||
volatile static uint32_t delay;
|
||||
static uint32_t priority_orig;
|
||||
|
||||
/*!
|
||||
\brief configure systick
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void systick_config(void)
|
||||
{
|
||||
priority_orig = __NVIC_GetPriority(SysTick_IRQn);
|
||||
|
||||
/* setup systick timer for 1MHz interrupts */
|
||||
if (SysTick_Config(SystemCoreClock / 1000000U)) {
|
||||
/* capture error */
|
||||
while(1);
|
||||
}
|
||||
|
||||
/* configure the systick handler priority */
|
||||
NVIC_SetPriority(SysTick_IRQn, 0x00U);
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief configure systick
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void systick_deinit(void)
|
||||
{
|
||||
NVIC_SetPriority(SysTick_IRQn, priority_orig);
|
||||
|
||||
SysTick->LOAD = 0UL; /* set reload register */
|
||||
SysTick->VAL = 0UL; /* Load the SysTick Counter Value */
|
||||
SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief delay a time in milliseconds
|
||||
\param[in] count: count in milliseconds
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void delay_1us(uint32_t count)
|
||||
{
|
||||
delay = count;
|
||||
|
||||
while(0U != delay);
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief delay a time in milliseconds
|
||||
\param[in] count: count in milliseconds
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void delay_1ms(uint32_t count)
|
||||
{
|
||||
delay = count * 1000;
|
||||
|
||||
while(0U != delay);
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief delay decrement
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void delay_decrement(void)
|
||||
{
|
||||
if (0U != delay)
|
||||
delay--;
|
||||
}
|
||||
51
MBL/platform/gdm32/systick.h
Normal file
51
MBL/platform/gdm32/systick.h
Normal file
@ -0,0 +1,51 @@
|
||||
/*!
|
||||
\file systick.h
|
||||
\brief the header file of systick
|
||||
|
||||
\version 2021-10-30, V1.0.0, firmware for GD32W51x
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright (c) 2021, GigaDevice Semiconductor Inc.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
||||
OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef SYSTICK_H
|
||||
#define SYSTICK_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* configure systick */
|
||||
void systick_config(void);
|
||||
/* Deinit systick */
|
||||
void systick_deinit(void);
|
||||
/* delay a time in milliseconds */
|
||||
void delay_1us(uint32_t count);
|
||||
/* delay a time in milliseconds */
|
||||
void delay_1ms(uint32_t count);
|
||||
/* delay decrement */
|
||||
void delay_decrement(void);
|
||||
|
||||
#endif /* SYSTICK_H */
|
||||
@ -1,5 +1,5 @@
|
||||
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
set(TARGET_EXE mbl-ns)
|
||||
set(TAGET_PROJECT_DIR ${PROJECT_SOURCE_DIR}/MBL/Project)
|
||||
add_executable(${TARGET_EXE})
|
||||
@ -25,7 +25,27 @@ target_sources(${TARGET_EXE}
|
||||
mbl_qspi_flash.c
|
||||
mbl_sys.c
|
||||
mbl_uart.c
|
||||
)
|
||||
drivers/CMT2310/0_Project/Uart_PingPong/main.c
|
||||
drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_callback.c
|
||||
drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_core.c
|
||||
drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_port.c
|
||||
drivers/CMT2310/0_Project/Uart_PingPong/irq_handle.c
|
||||
drivers/CMT2310/1_Middleware/Kfifo/ebyte_kfifo.c
|
||||
drivers/CMT2310/1_Middleware/Produce/ebyte_debug.c
|
||||
drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board_button.c
|
||||
drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board_mini_printf.c
|
||||
drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_433mhz.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_868mhz.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_915mhz.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio_phy.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio_hal.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_410mhz.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio_mac.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio_spi.c
|
||||
drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/ebyte_e48x.c
|
||||
)
|
||||
|
||||
target_sources(${TARGET_EXE}
|
||||
PRIVATE
|
||||
@ -37,17 +57,28 @@ target_sources(${TARGET_EXE}
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Source/gd32w51x_qspi.c
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Source/gd32w51x_rcu.c
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Source/gd32w51x_usart.c
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Source/gd32w51x_spi.c
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Source/gd32w51x_timer.c
|
||||
)
|
||||
|
||||
target_sources(${TARGET_EXE}
|
||||
PRIVATE
|
||||
../platform/gdm32/cmsis_core/mbl_system_gdm32.c
|
||||
../platform/gdm32/gcc/mbl_startup_gdm32.s
|
||||
../platform/gdm32/gd32w51x_it.c
|
||||
../platform/gdm32/systick.c
|
||||
)
|
||||
|
||||
target_include_directories(${TARGET_EXE}
|
||||
PRIVATE
|
||||
${PROJECT_SOURCE_DIR}/MBL/platform/gdm32/
|
||||
${PROJECT_SOURCE_DIR}/NSPE/Firmware/GD32W51x_standard_peripheral/Include
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/0_Project/Uart_PingPong/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/1_Middleware/Kfifo/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/1_Middleware/Produce/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/
|
||||
)
|
||||
|
||||
target_add_scatter_file(${TARGET_EXE}
|
||||
@ -61,6 +92,10 @@ target_link_options(${TARGET_EXE}
|
||||
-Wl,-Map=${TAGET_PROJECT_DIR}/GCC/output/bin/${TARGET_EXE}.map
|
||||
)
|
||||
|
||||
get_target_property(LINK_FLAGS ${TARGET_EXE} LINK_OPTIONS)
|
||||
string(REGEX REPLACE "(.*)-u._printf_float(.*)" "\\1\\2" LINK_FLAGS "${LINK_FLAGS}")
|
||||
set_target_properties(${TARGET_EXE} PROPERTIES LINK_OPTIONS "${LINK_FLAGS}")
|
||||
|
||||
if(CMAKE_HOST_UNIX)
|
||||
add_custom_command(TARGET ${TARGET_EXE} POST_BUILD
|
||||
COMMAND ${TAGET_PROJECT_DIR}/mbl_afterbuild.sh ${TAGET_PROJECT_DIR}/GCC/output/bin ${TARGET_EXE} GCC \"\"
|
||||
|
||||
12
MBL/source_ns/drivers/.editorconfig
Normal file
12
MBL/source_ns/drivers/.editorconfig
Normal file
@ -0,0 +1,12 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = tab
|
||||
indent_size = 8
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = false
|
||||
131
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_callback.c
Executable file
131
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_callback.c
Executable file
@ -0,0 +1,131 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_callback.h
|
||||
* @brief EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>շ<EFBFBD><D5B7><EFBFBD><EFBFBD>ɻص<C9BB><D8B5><EFBFBD><EFBFBD><EFBFBD> <20>ɿͻ<C9BF>ʵ<EFBFBD><CAB5><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD><DFBC><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
#include "ebyte_callback.h"
|
||||
|
||||
/*= !!!<21><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨ͷ<CCA8>ļ<EFBFBD> =======================================*/
|
||||
#include "board.h" //E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
#include "ebyte_debug.h" //E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
/*= !!!<21><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD> =======================================*/
|
||||
extern uint8_t RxBuffer[64];
|
||||
extern uint8_t BufferPing[5];
|
||||
extern uint8_t BufferPong[5];
|
||||
extern uint8_t Callback_isPingCheckReady;
|
||||
extern uint8_t PC_isConnected;
|
||||
extern uint8_t PcEchoBuffer[20];
|
||||
extern uint8_t is_jump_main;
|
||||
|
||||
/*==================================================================*/
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɻص<C9BB><D8B5>ӿ<EFBFBD> <20>ɿͻ<C9BF>ʵ<EFBFBD><CAB5><EFBFBD>Լ<EFBFBD><D4BC>ķ<EFBFBD><C4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param state <20>ϲ<EFBFBD><CFB2>ص<EFBFBD><D8B5>ṩ<EFBFBD><E1B9A9>״̬<D7B4><CCAC> <20>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE>ע<EFBFBD><D7A2><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>
|
||||
*
|
||||
*/
|
||||
void Ebyte_Port_TransmitCallback( uint16e_t state )
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
if( state &= 0x0001 )
|
||||
{
|
||||
//To-do ʵ<><CAB5><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
}
|
||||
/* <20><><EFBFBD><EFBFBD>: <20>쳣<EFBFBD><ECB3A3>ʱ */
|
||||
else if ( state &= 0x0200 )
|
||||
{
|
||||
//To-do ʵ<><CAB5><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
}
|
||||
/* <20><><EFBFBD><EFBFBD>: δ֪<CEB4><D6AA><EFBFBD><EFBFBD> */
|
||||
else
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD>״̬<D7B4><CCAC>ʶ<EFBFBD><CAB6><EFBFBD><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2>
|
||||
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1:SPIͨ<49>Ų<EFBFBD><C5B2><EFBFBD>ȷ 2:ģ<>鹩<EFBFBD>粻<EFBFBD><E7B2BB> */
|
||||
while(1);
|
||||
}
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɻص<C9BB><D8B5>ӿ<EFBFBD> <20>ɿͻ<C9BF>ʵ<EFBFBD><CAB5><EFBFBD>Լ<EFBFBD><D4BC>ķ<EFBFBD><C4B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param state <20>ϲ<EFBFBD><CFB2>ص<EFBFBD><D8B5>ṩ<EFBFBD><E1B9A9>״̬<D7B4><CCAC> <20>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE>ע<EFBFBD><D7A2><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>
|
||||
*
|
||||
*/
|
||||
void Ebyte_Port_ReceiveCallback( uint16_t state, uint8_t *buffer, uint8_t length )
|
||||
{
|
||||
uint8_t j, pcEchoLength;
|
||||
uint8_t *p;
|
||||
uint8_t rx_data[32] = {0};
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>: <20><><EFBFBD><EFBFBD> */
|
||||
if( state &= 0x0002 ) {
|
||||
//To-do ʵ<><CAB5><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
/* ͨ<><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD><D0B6>Ƿ<EFBFBD><C7B7><EFBFBD>ping pongָ<67><D6B8> */
|
||||
if( length == 4 || length == 5 ) {
|
||||
p = buffer;
|
||||
for( j = 0; j < 4; j++ ) {
|
||||
if( BufferPing[j] != *p++ )
|
||||
break;
|
||||
}
|
||||
if( j == 4 ) { //<2F>Ƚϵ<C8BD><CFB5><EFBFBD>ĩβ<C4A9><CEB2>ʾ<EFBFBD><CABE>ȫƥ<C8AB><C6A5>ping
|
||||
Callback_isPingCheckReady = 1;//֪ͨ<CDA8>ظ<EFBFBD>Pong
|
||||
if( length == 5 && PC_isConnected )
|
||||
BufferPong[4] = buffer[4];//<2F><>5<EFBFBD>ֽ<EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶ
|
||||
}
|
||||
|
||||
if( j!=4 && length == 5 && PC_isConnected ) {
|
||||
p = buffer;
|
||||
|
||||
for( j = 0; j < 4; j++ ) {
|
||||
if( BufferPong[j] != *p++ )
|
||||
break;
|
||||
}
|
||||
|
||||
if( j == 4 ) {//<2F><>ȫƥ<C8AB><C6A5>pong
|
||||
if( 0x01 == buffer[4] )
|
||||
Ebyte_DEBUG_CommandEcho( ( uint8_t* )SimulatedCommandsWireless1, EBYTE_CMD_PACKAGE_LENGTH, PcEchoBuffer, &pcEchoLength );
|
||||
else
|
||||
Ebyte_DEBUG_CommandEcho( ( uint8_t* )SimulatedCommandsWireless2, EBYTE_CMD_PACKAGE_LENGTH, PcEchoBuffer, &pcEchoLength );
|
||||
Ebyte_BSP_UartTransmit( PcEchoBuffer, pcEchoLength );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, ON );
|
||||
|
||||
if( ! PC_isConnected ) {
|
||||
is_jump_main = 1;
|
||||
snprintf(rx_data, sizeof(rx_data), "%s", buffer);
|
||||
EBYTE_LOG(" Receive Data: %s\r\n", rx_data);
|
||||
}
|
||||
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, OFF );
|
||||
}
|
||||
else if ( state &= 0x0200 ) { /* <20><><EFBFBD><EFBFBD>: <20>쳣<EFBFBD><ECB3A3>ʱ */
|
||||
//To-do ʵ<><CAB5><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
}
|
||||
else { /* <20><><EFBFBD><EFBFBD>: δ֪<CEB4><D6AA><EFBFBD><EFBFBD> */
|
||||
/* <20><><EFBFBD><EFBFBD>״̬<D7B4><CCAC>ʶ<EFBFBD><CAB6><EFBFBD><EFBFBD>ȷ<EFBFBD><C8B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2>
|
||||
<09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1:SPIͨ<49>Ų<EFBFBD><C5B2><EFBFBD>ȷ 2:ģ<>鹩<EFBFBD>粻<EFBFBD><E7B2BB> */
|
||||
while(1);
|
||||
}
|
||||
}
|
||||
@ -1,8 +1,8 @@
|
||||
#ifndef _EBYTE_CALLBACK_H_
|
||||
#define _EBYTE_CALLBACK_H_
|
||||
#include "ebyte_port.h"
|
||||
|
||||
void Ebyte_Port_TransmitCallback( uint16e_t state );
|
||||
void Ebyte_Port_ReceiveCallback( uint16e_t state ,uint8e_t *buffer, uint8e_t length);
|
||||
|
||||
#ifndef _EBYTE_CALLBACK_H_
|
||||
#define _EBYTE_CALLBACK_H_
|
||||
#include "ebyte_port.h"
|
||||
|
||||
void Ebyte_Port_TransmitCallback( uint16e_t state );
|
||||
void Ebyte_Port_ReceiveCallback( uint16e_t state ,uint8e_t *buffer, uint8e_t length);
|
||||
|
||||
#endif
|
||||
@ -1,34 +1,34 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_conf.h
|
||||
* @brief EBYTE驱动库的通用配置文件
|
||||
* @details 详情请参见 https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
/*= !!!配置产品型号 单选 ============================================*/
|
||||
#define EBYTE_E48_433M20S
|
||||
//#define EBYTE_E48_900M20S
|
||||
|
||||
/*==================================================================*/
|
||||
|
||||
/* SPI通信 由软件控制CS(NSS)信号 0:禁用 1:启用 */
|
||||
#define EBYTE_PORT_SPI_CS_SOFTWARE 1
|
||||
|
||||
/* 如何检测模块发送时的状态 0:异步中断通知 1:同步阻塞 */
|
||||
#define EBYTE_RF_TRANSMIT_CHECK_MODE 1
|
||||
|
||||
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_conf.h
|
||||
* @brief EBYTE驱动库的通用配置文件
|
||||
* @details 详情请参见 https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
/*= !!!配置产品型号 单选 ============================================*/
|
||||
#define EBYTE_E48_433M20S
|
||||
//#define EBYTE_E48_900M20S
|
||||
|
||||
/*==================================================================*/
|
||||
|
||||
/* SPI通信 由软件控制CS(NSS)信号 0:禁用 1:启用 */
|
||||
#define EBYTE_PORT_SPI_CS_SOFTWARE 1
|
||||
|
||||
/* 如何检测模块发送时的状态 0:异步中断通知 1:同步阻塞 */
|
||||
#define EBYTE_RF_TRANSMIT_CHECK_MODE 1
|
||||
|
||||
|
||||
49
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_core.c
Executable file
49
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_core.c
Executable file
@ -0,0 +1,49 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_core.c
|
||||
* @brief EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD>API<50><49>װ<EFBFBD><D7B0> <20><><EFBFBD><EFBFBD><EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ײ<EFBFBD><D7B2><EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
|
||||
#include "ebyte_core.h"
|
||||
|
||||
/* ָ<><D6B8> E48x <20>ײ<EFBFBD><D7B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
|
||||
#if defined(EBYTE_E48_433M20S)||defined(EBYTE_E48_900M20S)
|
||||
const Ebyte_RF_t Ebyte_RF =
|
||||
{
|
||||
Ebyte_E48x_Init,
|
||||
Ebyte_E48x_SendPayload,
|
||||
Ebyte_E48x_SetStandby,
|
||||
Ebyte_E48x_SetSleep,
|
||||
Ebyte_E48x_SetRx,
|
||||
Ebyte_E48x_IntOrPollTask,
|
||||
Ebyte_E48x_InterruptTrigger,
|
||||
Ebyte_E48x_GetName,
|
||||
Ebyte_E48x_GetDriverVersion
|
||||
};
|
||||
#else
|
||||
/* ebyte_conf.h <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1><EFBFBD>IJ<EFBFBD>Ʒ<EFBFBD>ͺŲ<CDBA><C5B2><EFBFBD>ȷ */
|
||||
#error No product selected !
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
47
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_core.h
Executable file
47
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_core.h
Executable file
@ -0,0 +1,47 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_core.h
|
||||
* @brief EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD>API<50><49>װ<EFBFBD><D7B0> <20><><EFBFBD><EFBFBD><EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ײ<EFBFBD><D7B2><EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include "ebyte_conf.h"
|
||||
|
||||
#if defined(EBYTE_E48_433M20S)||defined(EBYTE_E48_900M20S)
|
||||
#include "ebyte_e48x.h"
|
||||
#else
|
||||
#error No product selected !
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
void ( *Init )( void );
|
||||
void ( *Send )( uint8e_t *buffer, uint8e_t size , uint32e_t timeout);
|
||||
void ( *EnterStandby )( uint8e_t command);
|
||||
void ( *EnterSleepMode )( uint8e_t command);
|
||||
void ( *EnterReceiveMode )( uint32e_t timeout );
|
||||
void ( *StartPollTask)( void );
|
||||
void ( *InterruptTrigger)( void );
|
||||
uint32e_t ( *GetName ) (void );
|
||||
uint8e_t ( *GetDriverVersion ) (void );
|
||||
}Ebyte_RF_t;
|
||||
|
||||
extern const Ebyte_RF_t Ebyte_RF;
|
||||
|
||||
|
||||
|
||||
96
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_port.c
Executable file
96
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/ebyte/ebyte_port.c
Executable file
@ -0,0 +1,96 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file ebyte_port.h
|
||||
* @brief EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2><EFBFBD>ӿڲ<D3BF> <20>ɿͻ<C9BF><CDBB>Լ<EFBFBD><D4BC>ṩIO<49>ӿ<EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-13
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
#include "ebyte_port.h"
|
||||
|
||||
|
||||
/*= !!!<21><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨ͷ<CCA8>ļ<EFBFBD> =======================================*/
|
||||
#include "board.h" //E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
#include "drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio_hal.h"
|
||||
#include "systick.h"
|
||||
/*==================================================================*/
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨SPI<50>ӿ<EFBFBD><D3BF>շ<EFBFBD><D5B7><EFBFBD><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param send EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1 Byte
|
||||
* @return SPI<50><49><EFBFBD>յ<EFBFBD><D5B5><EFBFBD><EFBFBD><EFBFBD> 1 Byte
|
||||
* @note <20><>Ŀ<EFBFBD><C4BF>ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2>SPI_NSSʱ<53><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ebyte_conf.h<>ļ<EFBFBD> <20>ر<EFBFBD><D8B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SPI_CS(NSS)
|
||||
* <20><>Ŀ<EFBFBD><C4BF>ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SPI_NSSʱ<53><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Ebyte_Port_SpiCsIoControl() <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĺ<EFBFBD><C4BA><EFBFBD>˵<EFBFBD><CBB5>
|
||||
*/
|
||||
uint8e_t Ebyte_Port_SpiTransmitAndReceivce( uint8e_t send )
|
||||
{
|
||||
uint8e_t result = 0;
|
||||
|
||||
/* !<21><><EFBFBD><EFBFBD><EFBFBD>ṩ: SPI<50>ӿ<EFBFBD> */
|
||||
result = Ebyte_BSP_SpiTransAndRecv( send );
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief (<28><>ѡ)<29><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨SPI_CS(NSS)<29><><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param cmd EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF><EFBFBD>ָ<EFBFBD><D6B8>
|
||||
* @arg 0: <20><><EFBFBD><EFBFBD>CS(NSS)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>ƽ<EFBFBD><EFBFBD><DFBC>ź<EFBFBD> EBYTEģ<45><C4A3>SPI<50>ӿ<EFBFBD>Ϊ<EFBFBD>͵<EFBFBD>ƽѡ<C6BD><D1A1>
|
||||
* @arg 1: <20><><EFBFBD><EFBFBD>CS(NSS)<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD>ƽ<EFBFBD><EFBFBD><DFBC>ź<EFBFBD>
|
||||
* @note <20><>Ŀ<EFBFBD><C4BF>ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2>SPI_NSSʱ<53><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD> <20>˺<EFBFBD><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ч
|
||||
* <20><>Ŀ<EFBFBD><C4BF>ƽ̨<C6BD><CCA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SPI_NSSʱ<53><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ô˺<C3B4><CBBA><EFBFBD>
|
||||
*/
|
||||
void Ebyte_Port_SpiCsIoControl( uint8e_t cmd )
|
||||
{
|
||||
if ( cmd == 1 )
|
||||
{
|
||||
/* !<21><>ѡ: SPI CS<43><53><EFBFBD><EFBFBD> <20>ߵ<EFBFBD>ƽδѡ<CEB4><D1A1> */
|
||||
Ebyte_BSP_RfSpiUnselected();
|
||||
}
|
||||
else
|
||||
{
|
||||
/* !<21><>ѡ: SPI CS<43><53><EFBFBD><EFBFBD> <20>͵<EFBFBD>ƽѡ<C6BD><D1A1> */
|
||||
Ebyte_BSP_RfSpiSelected( );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨<C6BD><CCA8>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param time <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
* @note <20><>ע<EFBFBD><D7A2>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD>ô˺<C3B4><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ע<EFBFBD><D7A2><EFBFBD>ж<EFBFBD><D0B6>Ƿ<EFBFBD><C7B7><EFBFBD>Ӱ<EFBFBD>쵽<EFBFBD>˺<EFBFBD><CBBA><EFBFBD>
|
||||
*/
|
||||
void Ebyte_Port_DelayMs( uint16e_t time )
|
||||
{
|
||||
/* !<21><><EFBFBD><EFBFBD><EFBFBD>ṩ: <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD> */
|
||||
delay_1ms(time);
|
||||
}
|
||||
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>Ӳ<EFBFBD><D3B2>ƽ̨<C6BD><CCA8>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param time <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
* @note <20><>ע<EFBFBD><D7A2>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD>ô˺<C3B4><CBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ע<EFBFBD><D7A2><EFBFBD>ж<EFBFBD><D0B6>Ƿ<EFBFBD><C7B7><EFBFBD>Ӱ<EFBFBD>쵽<EFBFBD>˺<EFBFBD><CBBA><EFBFBD>
|
||||
*/
|
||||
void Ebyte_Port_DelayUs( uint16e_t time )
|
||||
{
|
||||
/* !<21><><EFBFBD><EFBFBD><EFBFBD>ṩ: <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD> */
|
||||
delay_1us(time);
|
||||
}
|
||||
@ -1,33 +1,33 @@
|
||||
#ifndef __EBYTE_PORT_H
|
||||
#define __EBYTE_PORT_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "ebyte_conf.h"
|
||||
|
||||
//#include "stm8l15x.h"
|
||||
//typedef unsigned char uint8e_t;
|
||||
//typedef unsigned short uint16e_t;
|
||||
//typedef unsigned long uint32e_t;
|
||||
//
|
||||
//typedef signed char int8e_t;
|
||||
//typedef signed short int16e_t;
|
||||
//typedef signed long int32e_t;
|
||||
|
||||
#define uint8e_t uint8_t
|
||||
#define uint16e_t uint16_t
|
||||
#define uint32e_t uint32_t
|
||||
#define int8e_t int8_t
|
||||
#define int16e_t int16_t
|
||||
#define int32e_t int32_t
|
||||
|
||||
void Ebyte_Port_RstIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_TxenIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_RxenIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_DelayMs( uint16e_t time );
|
||||
void Ebyte_Port_DelayUs( uint16e_t time );
|
||||
void Ebyte_Port_SpiCsIoControl( uint8e_t cmd );
|
||||
|
||||
uint8e_t Ebyte_Port_BusyIoRead( void );
|
||||
uint8e_t Ebyte_Port_SpiTransmitAndReceivce( uint8e_t send );
|
||||
|
||||
#endif /* __EBYTE_PORT_H */
|
||||
#ifndef __EBYTE_PORT_H
|
||||
#define __EBYTE_PORT_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "ebyte_conf.h"
|
||||
|
||||
//#include "stm8l15x.h"
|
||||
//typedef unsigned char uint8e_t;
|
||||
//typedef unsigned short uint16e_t;
|
||||
//typedef unsigned long uint32e_t;
|
||||
//
|
||||
//typedef signed char int8e_t;
|
||||
//typedef signed short int16e_t;
|
||||
//typedef signed long int32e_t;
|
||||
|
||||
#define uint8e_t uint8_t
|
||||
#define uint16e_t uint16_t
|
||||
#define uint32e_t uint32_t
|
||||
#define int8e_t int8_t
|
||||
#define int16e_t int16_t
|
||||
#define int32e_t int32_t
|
||||
|
||||
void Ebyte_Port_RstIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_TxenIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_RxenIoControl( uint8e_t cmd );
|
||||
void Ebyte_Port_DelayMs( uint16e_t time );
|
||||
void Ebyte_Port_DelayUs( uint16e_t time );
|
||||
void Ebyte_Port_SpiCsIoControl( uint8e_t cmd );
|
||||
|
||||
uint8e_t Ebyte_Port_BusyIoRead( void );
|
||||
uint8e_t Ebyte_Port_SpiTransmitAndReceivce( uint8e_t send );
|
||||
|
||||
#endif /* __EBYTE_PORT_H */
|
||||
@ -0,0 +1,8 @@
|
||||
#ifndef __EBYTE_E48_H__
|
||||
#define __EBYTE_E48_H__
|
||||
|
||||
#include <board.h>
|
||||
|
||||
int ebyte_main( void );
|
||||
|
||||
#endif /* __EBYTE_E48_H__ */
|
||||
211
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/irq_handle.c
Executable file
211
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/irq_handle.c
Executable file
@ -0,0 +1,211 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file stm8l15x_it.c
|
||||
* @author MCD Application Team
|
||||
* @version V1.0.0
|
||||
* @date 09/28/2010
|
||||
* @brief Main Interrupt Service Routines.
|
||||
* This file provides template for all peripherals interrupt service routine.
|
||||
******************************************************************************
|
||||
* @copy
|
||||
*
|
||||
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
|
||||
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
|
||||
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
|
||||
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
|
||||
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
|
||||
*
|
||||
* <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2>
|
||||
*/
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "gd32_it.h"
|
||||
#include "ebyte_kfifo.h"
|
||||
#include "ebyte_core.h"
|
||||
/* Private typedef -----------------------------------------------------------*/
|
||||
/* Private define ------------------------------------------------------------*/
|
||||
/* Private macro -------------------------------------------------------------*/
|
||||
/* Private variables ---------------------------------------------------------*/
|
||||
static uint8_t Uart_isInRecvState = 0;
|
||||
static uint8_t Uart_isContinuousRecv = 0;
|
||||
static uint32_t Uart_TickCounter = 0;
|
||||
extern uint8_t Uart_isRecvReady;
|
||||
|
||||
static uint16_t Button1_TickCounter = 0;
|
||||
static uint16_t Button2_TickCounter = 0;
|
||||
|
||||
extern Ebyte_FIFO_t hfifo;
|
||||
extern uint8_t FIFO_isTimeCheckReady;
|
||||
static uint32_t FIFO_TickCounter = 0;
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
void IT_Timer_ButtonCheck(void);
|
||||
void IT_Timer_UartCheck(void);
|
||||
/* Private functions ---------------------------------------------------------*/
|
||||
|
||||
/** @addtogroup IT_Functions
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifdef _COSMIC_
|
||||
/**
|
||||
* @brief Dummy interrupt routine
|
||||
* @par Parameters:
|
||||
* None
|
||||
* @retval
|
||||
* None
|
||||
*/
|
||||
INTERRUPT_HANDLER(NonHandledInterrupt, 0)
|
||||
{
|
||||
/* In order to detect unexpected events during development,
|
||||
it is recommended to set a breakpoint on the following instruction.
|
||||
*/
|
||||
}
|
||||
#endif
|
||||
|
||||
/*!
|
||||
\brief This function handles TIMER2 interrupt request.
|
||||
\param[in] none
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
void __TIMER2_IRQHandler(void)
|
||||
{
|
||||
if(SET == timer_interrupt_flag_get(TIMER2, TIMER_INT_UP)){
|
||||
/* clear channel 0 interrupt bit */
|
||||
timer_interrupt_flag_clear(TIMER2, TIMER_INT_UP);
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
IT_Timer_ButtonCheck();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>״̬<D7B4><CCAC><EFBFBD><EFBFBD> */
|
||||
// IT_Timer_UartCheck();
|
||||
|
||||
/* <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
Ebyte_BSP_TimerDecrement();
|
||||
}
|
||||
}
|
||||
|
||||
#if 0 // GY3513
|
||||
/**
|
||||
* @brief USART1 RX / Timer5 Capture/Compare Interrupt routine.
|
||||
* @param None
|
||||
* @retval None
|
||||
*/
|
||||
INTERRUPT_HANDLER(USART1_RX_TIM5_CC_IRQHandler, 28)
|
||||
{
|
||||
|
||||
/* <20><>֡<EFBFBD>ж<EFBFBD> ״̬<D7B4><CCAC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ʱ 10ms<6D><73>δ<EFBFBD>յ<EFBFBD><D5B5><EFBFBD>һ<EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD><EFBFBD>֡ */
|
||||
if( !Uart_isInRecvState )
|
||||
{
|
||||
Uart_isInRecvState = 1;
|
||||
}
|
||||
Uart_isContinuousRecv = 1;
|
||||
|
||||
/* <20><><EFBFBD>մ<EFBFBD><D5B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1 Byte */
|
||||
uint8_t temp = USART_ReceiveData8(USART1) ;
|
||||
|
||||
/* д<>뻺<EFBFBD><EBBBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 1 Byte */
|
||||
Ebyte_FIFO_Write( &hfifo, &temp, 1 );
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD>жϱ<D0B6>ʶ */
|
||||
USART_ClearITPendingBit( USART1, USART_IT_RXNE );
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʱ<EFBFBD><CAB1><EFBFBD>ж<EFBFBD> ״̬<D7B4><CCAC> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*/
|
||||
void IT_Timer_ButtonCheck(void)
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>1<EFBFBD><31><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
if( !Ebyte_BSP_ReadButton( BSP_BUTTON_1 ) )
|
||||
{
|
||||
Button1_TickCounter++;
|
||||
}
|
||||
else
|
||||
{
|
||||
if( Button1_TickCounter > 1000 ) // 1<><31> <20><><EFBFBD><EFBFBD>
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push( &BSP_BTN_FIFO, BTN_1_LONG);
|
||||
}
|
||||
else if( Button1_TickCounter > 50 ) //50<35><30><EFBFBD><EFBFBD> <20>̰<EFBFBD>
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push( &BSP_BTN_FIFO, BTN_1_SHORT);
|
||||
}
|
||||
else {} //50<35><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>Ϊ<EFBFBD>Ƕ<EFBFBD><C7B6><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
Button1_TickCounter=0;
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>2<EFBFBD><32><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
if( !Ebyte_BSP_ReadButton( BSP_BUTTON_2 ) )
|
||||
{
|
||||
Button2_TickCounter++;
|
||||
}
|
||||
else
|
||||
{
|
||||
if( Button2_TickCounter > 1000 ) // 1<><31> <20><><EFBFBD><EFBFBD>
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push( &BSP_BTN_FIFO, BTN_2_LONG);
|
||||
}
|
||||
else if( Button2_TickCounter > 50 ) //50<35><30><EFBFBD><EFBFBD> <20>̰<EFBFBD>
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push( &BSP_BTN_FIFO, BTN_2_SHORT);
|
||||
}
|
||||
else {} //50<35><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>Ϊ<EFBFBD>Ƕ<EFBFBD><C7B6><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
Button2_TickCounter=0;
|
||||
}
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʱ<EFBFBD><CAB1><EFBFBD>ж<EFBFBD> ״̬<D7B4><CCAC> <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>֡
|
||||
*/
|
||||
void IT_Timer_UartCheck(void)
|
||||
{
|
||||
/* <20><><EFBFBD>ڽ<EFBFBD><DABD>յ<EFBFBD><D5B5><EFBFBD>һ<EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD>Ϳ<EFBFBD>ʼ<EFBFBD><CABC>ʱ */
|
||||
if( Uart_isInRecvState )
|
||||
{
|
||||
Uart_TickCounter++;
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>10msû<73>н<EFBFBD><D0BD>յ<EFBFBD><D5B5>ڶ<EFBFBD><DAB6>ֽ<EFBFBD> <20><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>֡ */
|
||||
if( Uart_TickCounter > 10 )
|
||||
{
|
||||
/* ֪ͨ<CDA8><D6AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>յ<EFBFBD>һ֡ */
|
||||
Uart_isRecvReady ++;
|
||||
/* ֹͣ<CDA3><D6B9>ʱ */
|
||||
Uart_isInRecvState = 0;
|
||||
Uart_TickCounter = 0;
|
||||
}
|
||||
|
||||
/* <20><>λFIFO<46><4F>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD> */
|
||||
FIFO_TickCounter = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD>ڴ<EFBFBD><DAB4><EFBFBD>û<EFBFBD>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>з<EFBFBD><D0B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֡ 500ms<6D><73><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>FIFO<46>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD> */
|
||||
if( (!Uart_isInRecvState) && Uart_isRecvReady )
|
||||
{
|
||||
FIFO_TickCounter++;
|
||||
if( FIFO_TickCounter > 500)
|
||||
{
|
||||
FIFO_isTimeCheckReady=1;
|
||||
Uart_isRecvReady = 0;
|
||||
FIFO_TickCounter = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>ÿ<EFBFBD><C3BF><EFBFBD>յ<EFBFBD>1<EFBFBD><31><EFBFBD>ֽھ<D6BD><DABE><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD> */
|
||||
if( Uart_isInRecvState && Uart_isContinuousRecv )
|
||||
{
|
||||
Uart_TickCounter = 0;
|
||||
Uart_isContinuousRecv = 0;
|
||||
}
|
||||
}
|
||||
#endif // GY3513
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
|
||||
38
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/irq_handle.h
Executable file
38
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/irq_handle.h
Executable file
@ -0,0 +1,38 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file stm8l15x_it.h
|
||||
* @author MCD Application Team
|
||||
* @version V1.0.0
|
||||
* @date 09/28/2010
|
||||
* @brief This file contains the headers of the interrupt handlers.
|
||||
******************************************************************************
|
||||
* @copy
|
||||
*
|
||||
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
|
||||
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
|
||||
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
|
||||
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
|
||||
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
|
||||
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
|
||||
*
|
||||
* <h2><center>© COPYRIGHT 2010 STMicroelectronics</center></h2>
|
||||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __STM8L15x_IT_H
|
||||
#define __STM8L15x_IT_H
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
//#include "stm8l15x.h"
|
||||
|
||||
/* Exported types ------------------------------------------------------------*/
|
||||
/* Exported constants --------------------------------------------------------*/
|
||||
|
||||
/* Exported macro ------------------------------------------------------------*/
|
||||
/* Exported functions ------------------------------------------------------- */
|
||||
|
||||
void __TIMER2_IRQHandler(void);
|
||||
|
||||
#endif /* __STM8L15x_IT_H */
|
||||
|
||||
/******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
|
||||
233
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/main.c
Executable file
233
MBL/source_ns/drivers/CMT2310/0_Project/Uart_PingPong/main.c
Executable file
@ -0,0 +1,233 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file main.c
|
||||
* @brief E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><CDB8>ʾ<EFBFBD><CABE> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author yxw
|
||||
* @date 2023-12-25
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "ebyte_core.h"
|
||||
#include "ebyte_kfifo.h"
|
||||
#include "ebyte_debug.h"
|
||||
#include "systick.h"
|
||||
|
||||
void Task_Transmit( void );
|
||||
void Task_Button( void );
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ݴ洢<DDB4><E6B4A2><EFBFBD><EFBFBD> */
|
||||
Ebyte_FIFO_t hfifo;
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> ֡<><D6A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɱ<EFBFBD>ʶ */
|
||||
uint8_t Uart_isRecvReady = 0;
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> FIFO<46><4F><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶ */
|
||||
uint8_t FIFO_isTimeCheckReady = 0;
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> <20>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
uint8_t TxBuffer[64] = {0};
|
||||
uint8_t RxBuffer[64] = {0};
|
||||
uint8_t PcEchoBuffer[20] = {0};
|
||||
|
||||
uint8_t BufferPing[5] = {'p', 'i', 'n', 'g'};
|
||||
uint8_t BufferPong[5] = {'p', 'o', 'n', 'g'};
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> FIFO<46><4F><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶ */
|
||||
uint8_t Callback_isPingCheckReady = 0;
|
||||
|
||||
/* <20>Լ<EFBFBD>ģʽ <20><>ʶ */
|
||||
uint8_t PC_isConnected = 0;
|
||||
|
||||
uint8_t is_jump_main = 0;
|
||||
|
||||
static BSP_BTN_EVENT_t BTN_Event;
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*/
|
||||
int ebyte_main( void )
|
||||
{
|
||||
/* Init Systick */
|
||||
systick_config();
|
||||
/* <20><><EFBFBD><EFBFBD>Ӳ<EFBFBD><D3B2><EFBFBD><EFBFBD>Դ <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_Init();
|
||||
/* (<28><>ѡ) <20><><EFBFBD><EFBFBD><EFBFBD>жϽ<D0B6><CFBD><EFBFBD>FIFO <20>ɸ<EFBFBD><C9B8><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>д<EFBFBD><D0B4><EFBFBD> */
|
||||
Ebyte_FIFO_Init( &hfifo, EBYTE_FIFO_SIZE );
|
||||
/* EBYTE <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_RF.Init();
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
Ebyte_RF.EnterReceiveMode( 0 );
|
||||
|
||||
EBYTE_LOG( "Start PingPong.....\r\n" );
|
||||
EBYTE_LOG( "Please push button1 or button2.....\r\n" );
|
||||
|
||||
while( !is_jump_main ) {
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ӧ */
|
||||
Task_Button();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>:<3A><><EFBFBD><EFBFBD><E2B4AE><EFBFBD><EFBFBD><EFBFBD>ݲ<EFBFBD><DDB2><EFBFBD><EFBFBD>߷<EFBFBD><DFB7><EFBFBD> <20>ͻ<EFBFBD><CDBB>밴<EFBFBD><EBB0B4><EFBFBD>Զ<EFBFBD><D4B6><EFBFBD> */
|
||||
Task_Transmit();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>:EBYTE<54><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ִ<EFBFBD><D6B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
Ebyte_RF.StartPollTask();
|
||||
|
||||
delay_1ms(100);
|
||||
}
|
||||
|
||||
Ebyte_RF.EnterStandby(0);
|
||||
|
||||
Ebyte_BSP_Deinit();
|
||||
systick_deinit();
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ѯ<EFBFBD><D1AF><EFBFBD><EFBFBD> <20><><EFBFBD>ڽ<EFBFBD><DABD>յ<EFBFBD><D5B5><EFBFBD><EFBFBD><EFBFBD>ͨ<EFBFBD><CDA8>ģ<EFBFBD>鷢<EFBFBD><E9B7A2>
|
||||
*
|
||||
* @note <20><><EFBFBD><EFBFBD><EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD>ݽ<EFBFBD><DDBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>Ƕ<EFBFBD><C7B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ߴ<EFBFBD><DFB4>俪<EFBFBD><E4BFAA>
|
||||
* ע<><D7A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD>ģʽ<C4A3>л<EFBFBD><D0BB><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¿<EFBFBD><C2BF>Դ<EFBFBD><D4B4>ڽ<EFBFBD><DABD><EFBFBD>/<2F><><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ: <20><><EFBFBD><EFBFBD>ģʽ-><3E><><EFBFBD><EFBFBD>ģʽ-><3E><><EFBFBD><EFBFBD>ģʽ
|
||||
*/
|
||||
void Task_Transmit( void )
|
||||
{
|
||||
uint16_t length = 0;
|
||||
uint8_t pcEchoLength = 0;
|
||||
uint8_t pongLength = 0;
|
||||
|
||||
/* <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>ߴ<EFBFBD><DFB4><EFBFBD> (<28><><EFBFBD>Դ<EFBFBD><D4B4>ڽ<EFBFBD><DABD><EFBFBD>FIFO<46><4F><EFBFBD><EFBFBD>) */
|
||||
Ebyte_FIFO_GetDataLength( &hfifo, &length );
|
||||
|
||||
/* <20>漰<EFBFBD><E6BCB0><EFBFBD>첽<EFBFBD>ж<EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE> <20>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
1; <20><><EFBFBD><EFBFBD>FIFO<46><4F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>յ<EFBFBD>֡<EFBFBD><D6A1><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߷<EFBFBD><DFB7><EFBFBD>( <20><><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>֡<EFBFBD><D6A1>ʽ,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD>ᵼ<EFBFBD><E1B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ճ<EFBFBD><D5B3> <20><><EFBFBD><EFBFBD><EFBFBD>ݾ<EFBFBD><DDBE><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF><EFBFBD>п<EFBFBD><D0BF><EFBFBD>֡<EFBFBD>ж<EFBFBD> )
|
||||
2: <20><><EFBFBD><EFBFBD>FIFO<46><4F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݵ<EFBFBD><DDB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE>˳<EFBFBD><CBB3>˽<EFBFBD><CBBD><EFBFBD>״̬<D7B4><CCAC><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ( <20>ᵼ<EFBFBD><E1B5BC>FIFOʣ<4F><CAA3>δ<EFBFBD><CEB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݱ<EFBFBD><DDB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߷<EFBFBD><DFB7><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ݾ<EFBFBD><DDBE><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF><EFBFBD>п<EFBFBD><D0BF><EFBFBD>֡<EFBFBD>ж<EFBFBD> )*/
|
||||
if( ( length != 0 && Uart_isRecvReady ) || ( length != 0 && FIFO_isTimeCheckReady ) )
|
||||
{
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, ON );
|
||||
|
||||
/* <20><>ȡFIFO <20><><EFBFBD>ݷ<EFBFBD><DDB7><EFBFBD>TxBuffer */
|
||||
Ebyte_FIFO_Read( &hfifo, TxBuffer, length );
|
||||
|
||||
/* PC<50><43><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD>Ӧ */
|
||||
if( Ebyte_DEBUG_CommandEcho( TxBuffer,length, PcEchoBuffer, &pcEchoLength ) )
|
||||
{
|
||||
Ebyte_BSP_UartTransmit( PcEchoBuffer , pcEchoLength);
|
||||
}
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><CDB8> */
|
||||
else
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD>з<EFBFBD><D0B7><EFBFBD> */
|
||||
Ebyte_RF.Send( TxBuffer, length, 0 );
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
Ebyte_RF.EnterReceiveMode( 0 );
|
||||
}
|
||||
|
||||
/* ÿ<><C3BF><EFBFBD><EFBFBD>һ֡<D2BB>ͼ<EFBFBD><CDBC><EFBFBD>֡<EFBFBD><D6A1><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>жϿ<D0B6><CFBF><EFBFBD><EFBFBD>Ѿ<EFBFBD>д<EFBFBD><D0B4><EFBFBD>˶<EFBFBD>֡ */
|
||||
if( Uart_isRecvReady ) Uart_isRecvReady --;
|
||||
if( FIFO_isTimeCheckReady ) FIFO_isTimeCheckReady = 0;
|
||||
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, OFF );
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɻص<C9BB><D8B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E2B5BD> ping <20><><EFBFBD><EFBFBD> <20>ظ<EFBFBD> pong */
|
||||
if( Callback_isPingCheckReady )
|
||||
{
|
||||
if( PC_isConnected )
|
||||
{
|
||||
pongLength = 5;
|
||||
}else{
|
||||
EBYTE_LOG( " Echo : pong \r\n" );
|
||||
pongLength = 4;
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD>з<EFBFBD><D0B7><EFBFBD> */
|
||||
Ebyte_RF.Send( BufferPong, pongLength, 0 );
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
Ebyte_RF.EnterReceiveMode( 0 );
|
||||
|
||||
Callback_isPingCheckReady = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD>Ӧ
|
||||
*/
|
||||
void Task_Button( void )
|
||||
{
|
||||
uint8_t pcEchoLength = 0;
|
||||
uint8_t pingLength = 0;
|
||||
|
||||
if( ! Ebyte_BTN_FIFO_Pop( &BSP_BTN_FIFO, &BTN_Event ) )
|
||||
{
|
||||
switch( BTN_Event )
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD>1 <20>̰<EFBFBD> */
|
||||
case BTN_1_SHORT:
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, ON );
|
||||
|
||||
if( PC_isConnected )
|
||||
{
|
||||
/* ֪ͨPC */
|
||||
Ebyte_DEBUG_CommandEcho( (uint8_t*)SimulatedCommandsButton1, EBYTE_CMD_PACKAGE_LENGTH , PcEchoBuffer, &pcEchoLength );
|
||||
Ebyte_BSP_UartTransmit( PcEchoBuffer , pcEchoLength);
|
||||
BufferPing[4] = 0x01;
|
||||
pingLength = 5;
|
||||
}else
|
||||
{
|
||||
EBYTE_LOG( "\r\n Send Command : ping \r\n" );
|
||||
pingLength = 4;
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> ping */
|
||||
Ebyte_RF.Send( BufferPing, pingLength, 0 );
|
||||
Ebyte_RF.EnterReceiveMode( 0 );
|
||||
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, OFF );
|
||||
break;
|
||||
/* <20><><EFBFBD><EFBFBD>1 <20><><EFBFBD><EFBFBD> */
|
||||
case BTN_1_LONG:
|
||||
Ebyte_BSP_LedControl( BSP_LED_1, TOGGLE );
|
||||
break;
|
||||
/* <20><><EFBFBD><EFBFBD>2 <20>̰<EFBFBD> */
|
||||
case BTN_2_SHORT:
|
||||
Ebyte_BSP_LedControl( BSP_LED_2, ON );
|
||||
if( PC_isConnected )
|
||||
{
|
||||
/* ֪ͨPC */
|
||||
Ebyte_DEBUG_CommandEcho( (uint8_t*)SimulatedCommandsButton2, EBYTE_CMD_PACKAGE_LENGTH , PcEchoBuffer, &pcEchoLength );
|
||||
Ebyte_BSP_UartTransmit( PcEchoBuffer , pcEchoLength);
|
||||
BufferPing[4] = 0x02;
|
||||
pingLength = 5;
|
||||
}else
|
||||
{
|
||||
EBYTE_LOG( "\r\n Send Command : ping \r\n" );
|
||||
pingLength = 4;
|
||||
}
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> ping */
|
||||
Ebyte_RF.Send( BufferPing, pingLength, 0 );
|
||||
Ebyte_RF.EnterReceiveMode( 0 );
|
||||
|
||||
Ebyte_BSP_LedControl( BSP_LED_2, OFF );
|
||||
break;
|
||||
/* <20><><EFBFBD><EFBFBD>2 <20><><EFBFBD><EFBFBD> */
|
||||
case BTN_2_LONG:
|
||||
Ebyte_BSP_LedControl( BSP_LED_2, TOGGLE );
|
||||
break;
|
||||
default :
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,107 +1,107 @@
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "ebyte_kfifo.h"
|
||||
|
||||
uint8_t Ebyte_FIFO_Init( Ebyte_FIFO_t *fifo, uint16_t size )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
|
||||
if( ( size & ( size - 1 ) ) != 0 ) //Warning ! Size must be 2^n ! Please view linux kfifo
|
||||
{
|
||||
result = 1;
|
||||
}
|
||||
|
||||
fifo->size = size;
|
||||
fifo->in = 0;
|
||||
fifo->out = 0;
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Write( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
|
||||
uint32_t i, j;
|
||||
uint16_t endLength, orgLength;
|
||||
uint8_t *pFifoBuffer;
|
||||
|
||||
orgLength = length;
|
||||
/* calculate the length of data that can be written */
|
||||
length = MIN( length, fifo->size - fifo->in + fifo->out );
|
||||
/* first put the data starting from fifo->in to buffer end */
|
||||
endLength = MIN( length, fifo->size - ( fifo->in & ( fifo->size - 1 ) ) );
|
||||
pFifoBuffer = fifo->buffer + ( fifo->in & ( fifo->size - 1 ) );
|
||||
for( i = 0; i < endLength; i++ )
|
||||
{
|
||||
*( pFifoBuffer++ ) = *( pData++ );
|
||||
}
|
||||
/* then put the rest (if any) at the beginning of the buffer */
|
||||
j = length - endLength;
|
||||
if ( j > 0 )
|
||||
{
|
||||
pFifoBuffer = fifo->buffer;
|
||||
|
||||
for( i = 0; i < j; i++ )
|
||||
{
|
||||
*( pFifoBuffer++ ) = *( pData++ );
|
||||
}
|
||||
}
|
||||
|
||||
fifo->in += length;
|
||||
if( length < orgLength )
|
||||
{
|
||||
result = 1; // Means fifo is full , some data can not be written in
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Read( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
uint16_t i, j;
|
||||
uint16_t endLength, orgLength;
|
||||
uint8_t *pFifoBuffer;
|
||||
|
||||
orgLength = length;
|
||||
length = MIN( length, fifo->in - fifo->out );
|
||||
/* first get the data from fifo->out until the end of the buffer */
|
||||
endLength = MIN( length, fifo->size - ( fifo->out & ( fifo->size - 1 ) ) );
|
||||
pFifoBuffer = fifo->buffer + ( fifo->out & ( fifo->size - 1 ) );
|
||||
for( i = 0; i < endLength; i++ )
|
||||
{
|
||||
*( pData++ ) = *( pFifoBuffer++ );
|
||||
}
|
||||
/* then get the rest (if any) from the beginning of the buffer */
|
||||
j = length - endLength;
|
||||
if ( j > 0 )
|
||||
{
|
||||
pFifoBuffer = fifo->buffer;
|
||||
|
||||
for( i = 0; i < j; i++ )
|
||||
{
|
||||
*( pData++ ) = *( pFifoBuffer++ ) ;
|
||||
}
|
||||
}
|
||||
fifo->out += length;
|
||||
if( length < orgLength )
|
||||
{
|
||||
result = 1; // not enough data
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_GetDataLength( Ebyte_FIFO_t *fifo, uint16_t *pLength )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
*pLength = ( fifo->in - fifo->out );
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Clear( Ebyte_FIFO_t *fifo )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
fifo->in = 0;
|
||||
fifo->out = 0;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include "ebyte_kfifo.h"
|
||||
|
||||
uint8_t Ebyte_FIFO_Init( Ebyte_FIFO_t *fifo, uint16_t size )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
|
||||
if( ( size & ( size - 1 ) ) != 0 ) //Warning ! Size must be 2^n ! Please view linux kfifo
|
||||
{
|
||||
result = 1;
|
||||
}
|
||||
|
||||
fifo->size = size;
|
||||
fifo->in = 0;
|
||||
fifo->out = 0;
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Write( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
|
||||
uint32_t i, j;
|
||||
uint16_t endLength, orgLength;
|
||||
uint8_t *pFifoBuffer;
|
||||
|
||||
orgLength = length;
|
||||
/* calculate the length of data that can be written */
|
||||
length = MIN( length, fifo->size - fifo->in + fifo->out );
|
||||
/* first put the data starting from fifo->in to buffer end */
|
||||
endLength = MIN( length, fifo->size - ( fifo->in & ( fifo->size - 1 ) ) );
|
||||
pFifoBuffer = fifo->buffer + ( fifo->in & ( fifo->size - 1 ) );
|
||||
for( i = 0; i < endLength; i++ )
|
||||
{
|
||||
*( pFifoBuffer++ ) = *( pData++ );
|
||||
}
|
||||
/* then put the rest (if any) at the beginning of the buffer */
|
||||
j = length - endLength;
|
||||
if ( j > 0 )
|
||||
{
|
||||
pFifoBuffer = fifo->buffer;
|
||||
|
||||
for( i = 0; i < j; i++ )
|
||||
{
|
||||
*( pFifoBuffer++ ) = *( pData++ );
|
||||
}
|
||||
}
|
||||
|
||||
fifo->in += length;
|
||||
if( length < orgLength )
|
||||
{
|
||||
result = 1; // Means fifo is full , some data can not be written in
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Read( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
uint16_t i, j;
|
||||
uint16_t endLength, orgLength;
|
||||
uint8_t *pFifoBuffer;
|
||||
|
||||
orgLength = length;
|
||||
length = MIN( length, fifo->in - fifo->out );
|
||||
/* first get the data from fifo->out until the end of the buffer */
|
||||
endLength = MIN( length, fifo->size - ( fifo->out & ( fifo->size - 1 ) ) );
|
||||
pFifoBuffer = fifo->buffer + ( fifo->out & ( fifo->size - 1 ) );
|
||||
for( i = 0; i < endLength; i++ )
|
||||
{
|
||||
*( pData++ ) = *( pFifoBuffer++ );
|
||||
}
|
||||
/* then get the rest (if any) from the beginning of the buffer */
|
||||
j = length - endLength;
|
||||
if ( j > 0 )
|
||||
{
|
||||
pFifoBuffer = fifo->buffer;
|
||||
|
||||
for( i = 0; i < j; i++ )
|
||||
{
|
||||
*( pData++ ) = *( pFifoBuffer++ ) ;
|
||||
}
|
||||
}
|
||||
fifo->out += length;
|
||||
if( length < orgLength )
|
||||
{
|
||||
result = 1; // not enough data
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_GetDataLength( Ebyte_FIFO_t *fifo, uint16_t *pLength )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
*pLength = ( fifo->in - fifo->out );
|
||||
return result;
|
||||
}
|
||||
|
||||
uint8_t Ebyte_FIFO_Clear( Ebyte_FIFO_t *fifo )
|
||||
{
|
||||
uint8_t result = 0;
|
||||
fifo->in = 0;
|
||||
fifo->out = 0;
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -1,19 +1,19 @@
|
||||
#include "board.h"
|
||||
|
||||
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
||||
#define EBYTE_FIFO_SIZE 64 // Warning ! Size must be 2^n ! Please view linux kfifo
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint32_t in;
|
||||
uint32_t out;
|
||||
uint32_t size;
|
||||
uint8_t buffer[EBYTE_FIFO_SIZE];
|
||||
|
||||
} Ebyte_FIFO_t;
|
||||
|
||||
uint8_t Ebyte_FIFO_Init( Ebyte_FIFO_t *fifo, uint16_t size );
|
||||
uint8_t Ebyte_FIFO_Write( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length );
|
||||
uint8_t Ebyte_FIFO_GetDataLength( Ebyte_FIFO_t *fifo, uint16_t *pLength );
|
||||
uint8_t Ebyte_FIFO_Read( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length );
|
||||
uint8_t Ebyte_FIFO_Clear( Ebyte_FIFO_t *fifo );
|
||||
#include "board.h"
|
||||
|
||||
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
||||
#define EBYTE_FIFO_SIZE 64 // Warning ! Size must be 2^n ! Please view linux kfifo
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint32_t in;
|
||||
uint32_t out;
|
||||
uint32_t size;
|
||||
uint8_t buffer[EBYTE_FIFO_SIZE];
|
||||
|
||||
} Ebyte_FIFO_t;
|
||||
|
||||
uint8_t Ebyte_FIFO_Init( Ebyte_FIFO_t *fifo, uint16_t size );
|
||||
uint8_t Ebyte_FIFO_Write( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length );
|
||||
uint8_t Ebyte_FIFO_GetDataLength( Ebyte_FIFO_t *fifo, uint16_t *pLength );
|
||||
uint8_t Ebyte_FIFO_Read( Ebyte_FIFO_t *fifo, uint8_t *pData, uint16_t length );
|
||||
uint8_t Ebyte_FIFO_Clear( Ebyte_FIFO_t *fifo );
|
||||
@ -1,122 +1,122 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board.c
|
||||
* @brief E15-EVB02 检测模式
|
||||
* @details 详情请参见 https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-20
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "ebyte_core.h"
|
||||
#include "ebyte_debug.h"
|
||||
|
||||
extern unsigned char PC_isConnected;
|
||||
|
||||
const unsigned char SimulatedCommandsButton1[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_BUTTON,
|
||||
0x01
|
||||
};
|
||||
|
||||
const unsigned char SimulatedCommandsButton2[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_BUTTON,
|
||||
0x02
|
||||
};
|
||||
const unsigned char SimulatedCommandsWireless1[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_WIRELESS,
|
||||
0x01
|
||||
};
|
||||
const unsigned char SimulatedCommandsWireless2[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_WIRELESS,
|
||||
0x02
|
||||
};
|
||||
|
||||
|
||||
/* !
|
||||
* @brief 测试命令检查
|
||||
*
|
||||
* @param rxBuffer 可能含有命令的数据包
|
||||
* @param length rxBuffer数据长度
|
||||
* @param txBuffer 响应数据包 长度>10
|
||||
* @param tLength 响应数据包长度
|
||||
* @return 0:未检测到命令 1:检测到了命令
|
||||
*/
|
||||
unsigned char Ebyte_DEBUG_CommandEcho( unsigned char *rxBuffer , unsigned char length, unsigned char *txBuffer, unsigned char *tLength)
|
||||
{
|
||||
unsigned char result = 0;
|
||||
unsigned char *p;
|
||||
unsigned char tmp,version;
|
||||
unsigned long name;
|
||||
|
||||
/* 只关心固定长度为10的数据帧 间隔时间长 粘包几率很小*/
|
||||
if( length == EBYTE_CMD_PACKAGE_LENGTH )
|
||||
{
|
||||
p = rxBuffer;
|
||||
|
||||
if( *p++== EBYTE_CMD_PACKAGE_START && *p++== EBYTE_CMD_PACKAGE_START && *p++== EBYTE_CMD_PACKAGE_START)
|
||||
{
|
||||
/* 数据体第一字节 指令码 */
|
||||
tmp = *p;
|
||||
switch( tmp )
|
||||
{
|
||||
case EBYTE_CMD_TEST_MODE:
|
||||
|
||||
name = Ebyte_RF.GetName();
|
||||
version = Ebyte_RF.GetDriverVersion();
|
||||
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_MODE;
|
||||
*txBuffer++ = (unsigned char)(name>>24);
|
||||
*txBuffer++ = (unsigned char)(name>>16);
|
||||
*txBuffer++ = (unsigned char)(name>>8);
|
||||
*txBuffer++ = (unsigned char)(name);
|
||||
*txBuffer++ = version;
|
||||
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
PC_isConnected = 1; //模式变更
|
||||
break;
|
||||
case EBYTE_CMD_TEST_BUTTON:
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_BUTTON;
|
||||
*txBuffer = *++p;
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
break;
|
||||
case EBYTE_CMD_TEST_WIRELESS:
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_WIRELESS;
|
||||
*txBuffer = *++p;
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
break;
|
||||
}
|
||||
|
||||
result = 1;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board.c
|
||||
* @brief E15-EVB02 检测模式
|
||||
* @details 详情请参见 https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-20
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "ebyte_core.h"
|
||||
#include "ebyte_debug.h"
|
||||
|
||||
extern unsigned char PC_isConnected;
|
||||
|
||||
const unsigned char SimulatedCommandsButton1[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_BUTTON,
|
||||
0x01
|
||||
};
|
||||
|
||||
const unsigned char SimulatedCommandsButton2[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_BUTTON,
|
||||
0x02
|
||||
};
|
||||
const unsigned char SimulatedCommandsWireless1[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_WIRELESS,
|
||||
0x01
|
||||
};
|
||||
const unsigned char SimulatedCommandsWireless2[5] = { EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_PACKAGE_START,
|
||||
EBYTE_CMD_TEST_WIRELESS,
|
||||
0x02
|
||||
};
|
||||
|
||||
|
||||
/* !
|
||||
* @brief 测试命令检查
|
||||
*
|
||||
* @param rxBuffer 可能含有命令的数据包
|
||||
* @param length rxBuffer数据长度
|
||||
* @param txBuffer 响应数据包 长度>10
|
||||
* @param tLength 响应数据包长度
|
||||
* @return 0:未检测到命令 1:检测到了命令
|
||||
*/
|
||||
unsigned char Ebyte_DEBUG_CommandEcho( unsigned char *rxBuffer , unsigned char length, unsigned char *txBuffer, unsigned char *tLength)
|
||||
{
|
||||
unsigned char result = 0;
|
||||
unsigned char *p;
|
||||
unsigned char tmp,version;
|
||||
unsigned long name;
|
||||
|
||||
/* 只关心固定长度为10的数据帧 间隔时间长 粘包几率很小*/
|
||||
if( length == EBYTE_CMD_PACKAGE_LENGTH )
|
||||
{
|
||||
p = rxBuffer;
|
||||
|
||||
if( *p++== EBYTE_CMD_PACKAGE_START && *p++== EBYTE_CMD_PACKAGE_START && *p++== EBYTE_CMD_PACKAGE_START)
|
||||
{
|
||||
/* 数据体第一字节 指令码 */
|
||||
tmp = *p;
|
||||
switch( tmp )
|
||||
{
|
||||
case EBYTE_CMD_TEST_MODE:
|
||||
|
||||
name = Ebyte_RF.GetName();
|
||||
version = Ebyte_RF.GetDriverVersion();
|
||||
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_MODE;
|
||||
*txBuffer++ = (unsigned char)(name>>24);
|
||||
*txBuffer++ = (unsigned char)(name>>16);
|
||||
*txBuffer++ = (unsigned char)(name>>8);
|
||||
*txBuffer++ = (unsigned char)(name);
|
||||
*txBuffer++ = version;
|
||||
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
PC_isConnected = 1; //模式变更
|
||||
break;
|
||||
case EBYTE_CMD_TEST_BUTTON:
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_BUTTON;
|
||||
*txBuffer = *++p;
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
break;
|
||||
case EBYTE_CMD_TEST_WIRELESS:
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_PACKAGE_START;
|
||||
*txBuffer++ = EBYTE_CMD_TEST_WIRELESS;
|
||||
*txBuffer = *++p;
|
||||
*tLength = EBYTE_CMD_PACKAGE_LENGTH;
|
||||
break;
|
||||
}
|
||||
|
||||
result = 1;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
@ -1,14 +1,14 @@
|
||||
|
||||
|
||||
#define EBYTE_CMD_PACKAGE_START 0xC5
|
||||
#define EBYTE_CMD_PACKAGE_LENGTH 0x0A
|
||||
#define EBYTE_CMD_TEST_MODE 0x01
|
||||
#define EBYTE_CMD_TEST_BUTTON 0x02
|
||||
#define EBYTE_CMD_TEST_WIRELESS 0x03
|
||||
|
||||
extern const unsigned char SimulatedCommandsButton1[5];
|
||||
extern const unsigned char SimulatedCommandsButton2[5];
|
||||
extern const unsigned char SimulatedCommandsWireless1[5];
|
||||
extern const unsigned char SimulatedCommandsWireless2[5];
|
||||
|
||||
|
||||
|
||||
#define EBYTE_CMD_PACKAGE_START 0xC5
|
||||
#define EBYTE_CMD_PACKAGE_LENGTH 0x0A
|
||||
#define EBYTE_CMD_TEST_MODE 0x01
|
||||
#define EBYTE_CMD_TEST_BUTTON 0x02
|
||||
#define EBYTE_CMD_TEST_WIRELESS 0x03
|
||||
|
||||
extern const unsigned char SimulatedCommandsButton1[5];
|
||||
extern const unsigned char SimulatedCommandsButton2[5];
|
||||
extern const unsigned char SimulatedCommandsWireless1[5];
|
||||
extern const unsigned char SimulatedCommandsWireless2[5];
|
||||
|
||||
unsigned char Ebyte_DEBUG_CommandEcho( unsigned char *rxBuffer , unsigned char length, unsigned char *txBuffer, unsigned char *tLength);
|
||||
431
MBL/source_ns/drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board.c
Executable file
431
MBL/source_ns/drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board.c
Executable file
@ -0,0 +1,431 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board.c
|
||||
* @brief E15-EVB02 <20>弶<EFBFBD><E5BCB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-06
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "board.h"
|
||||
#include "ebyte_port.h"
|
||||
#include "ebyte_conf.h"
|
||||
#include "gd32w51x_gpio.h"
|
||||
#include "gd32w51x_misc.h"
|
||||
#include "gd32w51x_rcu.h"
|
||||
#include "gd32w51x_spi.h"
|
||||
#include "gd32w51x_timer.h"
|
||||
#include "platform_def.h"
|
||||
|
||||
BSP_BTN_FIFO_t BSP_BTN_FIFO;
|
||||
|
||||
|
||||
/*!< @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD> <20><><EFBFBD>ڶ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD>ж<EFBFBD> <20>ݼ<EFBFBD> */
|
||||
volatile uint32_t Ebyte_TimerDelayCounter = 0;
|
||||
|
||||
/* !
|
||||
* @brief <20>ڲ<EFBFBD>ʱ<EFBFBD>ӳ<EFBFBD>ʼ<EFBFBD><CABC>
|
||||
*/
|
||||
void Ebyte_BSP_HSI_Init(void)
|
||||
{
|
||||
// /* <20>ڲ<EFBFBD> 16M HSI ʱ<><CAB1> */
|
||||
// CLK_SYSCLKSourceConfig( CLK_SYSCLKSource_HSI );
|
||||
//
|
||||
// /* 1<><31>Ƶ 16M/1 */
|
||||
// CLK_SYSCLKDivConfig( CLK_SYSCLKDiv_1 );
|
||||
}
|
||||
|
||||
void Ebyte_BSP_E48xGPIO_Init(void)
|
||||
{
|
||||
rcu_periph_clock_enable(BSP_GPIO_RCU_E48_GPIO);
|
||||
|
||||
gpio_mode_set( BSP_GPIO_PORT_E48_GP0, GPIO_MODE_INPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_E48_GP0);
|
||||
gpio_mode_set( BSP_GPIO_PORT_E48_NIRQ, GPIO_MODE_INPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_E48_NIRQ);
|
||||
gpio_mode_set( BSP_GPIO_PORT_E48_GP3, GPIO_MODE_INPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_E48_GP3);
|
||||
gpio_mode_set( BSP_GPIO_PORT_E48_GP4, GPIO_MODE_INPUT, GPIO_PUPD_NONE, BSP_GPIO_PIN_E48_GP4);
|
||||
gpio_mode_set( BSP_GPIO_PORT_E48_GP5, GPIO_MODE_INPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_E48_GP5);
|
||||
}
|
||||
|
||||
void Ebyte_BSP_E48xGPIO_Deinit(void)
|
||||
{
|
||||
rcu_periph_clock_disable(BSP_GPIO_RCU_E48_GPIO);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IO
|
||||
*
|
||||
* @note Ŀ<><C4BF>Ӳ<EFBFBD><D3B2>: EBYTE E15-EVB02
|
||||
*/
|
||||
void Ebyte_BSP_GPIO_Init(void)
|
||||
{
|
||||
/* <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>״̬<D7B4><CCAC><EFBFBD><EFBFBD> */
|
||||
Ebyte_BSP_E48xGPIO_Init();
|
||||
|
||||
/* LED */
|
||||
rcu_periph_clock_enable(BSP_GPIO_RCU_E48_LED);
|
||||
gpio_mode_set( BSP_GPIO_PORT_LED_1, GPIO_MODE_OUTPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_LED_1 );
|
||||
gpio_mode_set( BSP_GPIO_PORT_LED_2, GPIO_MODE_OUTPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_LED_2 );
|
||||
gpio_output_options_set(BSP_GPIO_PORT_LED_1, GPIO_OTYPE_PP, GPIO_OSPEED_25MHZ, BSP_GPIO_PIN_LED_1);
|
||||
gpio_output_options_set(BSP_GPIO_PORT_LED_2, GPIO_OTYPE_PP, GPIO_OSPEED_25MHZ, BSP_GPIO_PIN_LED_2);
|
||||
|
||||
/* Button */
|
||||
rcu_periph_clock_enable(BSP_GPIO_RCU_E48_BUTTON);
|
||||
gpio_mode_set( BSP_GPIO_PORT_BUTTON_1, GPIO_MODE_INPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_BUTTON_1);
|
||||
// GPIO_Init( BSP_GPIO_PORT_BUTTON_2, BSP_GPIO_PIN_BUTTON_2, GPIO_Mode_In_PU_No_IT );
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IO
|
||||
*
|
||||
* @note Ŀ<><C4BF>Ӳ<EFBFBD><D3B2>: EBYTE E15-EVB02
|
||||
*/
|
||||
void Ebyte_BSP_GPIO_Deinit(void)
|
||||
{
|
||||
/* Button */
|
||||
rcu_periph_clock_disable(BSP_GPIO_RCU_E48_BUTTON);
|
||||
|
||||
/* LED */
|
||||
rcu_periph_clock_disable(BSP_GPIO_RCU_E48_LED);
|
||||
|
||||
/* E48 */
|
||||
Ebyte_BSP_E48xGPIO_Deinit();
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief ͨ<>Ŵ<EFBFBD><C5B4>ڳ<EFBFBD>ʼ<EFBFBD><CABC>
|
||||
*
|
||||
* @note <20><>ע<EFBFBD>⣬<EFBFBD><E2A3AC>ͬ<EFBFBD><CDAC>MCU<43><55><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˿<EFBFBD>ӳ<EFBFBD><D3B3>
|
||||
*/
|
||||
void Ebyte_BSP_UART_Init( void )
|
||||
{
|
||||
// /* ʱ<><CAB1> */
|
||||
// CLK_PeripheralClockConfig( BSP_USER_UART_CLOCK, ENABLE);
|
||||
//
|
||||
// /* GPIO */
|
||||
// GPIO_ExternalPullUpConfig( BSP_GPIO_PORT_UART_TX, BSP_GPIO_PIN_UART_TX, ENABLE );
|
||||
// GPIO_ExternalPullUpConfig( BSP_GPIO_PORT_UART_RX, BSP_GPIO_PIN_UART_RX, ENABLE );
|
||||
//
|
||||
// /* <20>˿<EFBFBD><CBBF><EFBFBD>ӳ<EFBFBD><D3B3> */
|
||||
// SYSCFG_REMAPPinConfig( REMAP_Pin_USART1TxRxPortA, ENABLE );
|
||||
//
|
||||
// /* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> E15-EVB02Ĭ<32>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD><EFBFBD>9600 8N1 */
|
||||
// USART_Init( BSP_USER_UART, BSP_USER_UART_BAUDRATE, USART_WordLength_8b, USART_StopBits_1, BSP_USER_UART_PARITY, (USART_Mode_TypeDef)(USART_Mode_Rx | USART_Mode_Tx ));//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>պͷ<D5BA><CDB7><EFBFBD>
|
||||
//
|
||||
// /* <20><EFBFBD><F2BFAABD><EFBFBD><EFBFBD>ж<EFBFBD> */;
|
||||
// USART_ITConfig( BSP_USER_UART, USART_IT_RXNE, ENABLE );
|
||||
//
|
||||
// /* <20><><EFBFBD><EFBFBD> ʹ<><CAB9> */
|
||||
// USART_Cmd( BSP_USER_UART, ENABLE);
|
||||
}
|
||||
|
||||
void Ebyte_BSP_ThreeLinesSPI_Init()
|
||||
{
|
||||
/* <20>ϲ<EFBFBD><CFB2><EFBFBD><EFBFBD><EFBFBD>E49 GPIO<49><4F>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD> */
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ͨ<EFBFBD><CDA8>SPI<50>ӿڳ<D3BF>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*/
|
||||
void Ebyte_BSP_SPI_Init( void )
|
||||
{
|
||||
spi_parameter_struct spi_init_struct;
|
||||
|
||||
/* ʱ<><CAB1> */
|
||||
rcu_periph_clock_enable(BSP_RF_SPI_CLOCK);
|
||||
rcu_periph_clock_enable(BSP_GPIO_RCU_E48_SPI);
|
||||
|
||||
/* SPI1 GPIO config: SCK/PB13, MISO/PB14, MOSI/PB15 */
|
||||
gpio_af_set(BSP_GPIO_PORT_SPI, GPIO_AF_5, GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15);
|
||||
gpio_mode_set(BSP_GPIO_PORT_SPI, GPIO_MODE_AF, GPIO_PUPD_NONE, GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15);
|
||||
gpio_output_options_set(BSP_GPIO_PORT_SPI, GPIO_OTYPE_PP, GPIO_OSPEED_10MHZ, GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15);
|
||||
|
||||
/* SPI0_NSS */
|
||||
gpio_mode_set(BSP_GPIO_PORT_SPI, GPIO_MODE_OUTPUT, GPIO_PUPD_PULLUP, BSP_GPIO_PIN_SPI_NSS); //Ƭѡ CS
|
||||
gpio_output_options_set(BSP_GPIO_PORT_SPI, GPIO_OTYPE_PP, GPIO_OSPEED_25MHZ, BSP_GPIO_PIN_SPI_NSS);
|
||||
|
||||
// GPIO_ExternalPullUpConfig( BSP_GPIO_PORT_SPI_SCK, BSP_GPIO_PIN_SPI_MOSI | BSP_GPIO_PIN_SPI_MISO | BSP_GPIO_PIN_SPI_SCK, ENABLE); // MOSI MISO SCK
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
spi_init_struct.trans_mode = SPI_TRANSMODE_FULLDUPLEX;
|
||||
spi_init_struct.device_mode = SPI_MASTER; //<2F><><EFBFBD><EFBFBD>ģʽ
|
||||
spi_init_struct.frame_size = SPI_FRAMESIZE_8BIT;
|
||||
spi_init_struct.clock_polarity_phase = SPI_CK_PL_LOW_PH_1EDGE; // Mode0 {CPOL=0, CPHA=0}
|
||||
spi_init_struct.nss = SPI_NSS_SOFT; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƴӻ<C6B4>CSƬѡ
|
||||
spi_init_struct.prescale = SPI_PSC_8; //16M/2 SCK<43><4B><EFBFBD><EFBFBD>
|
||||
spi_init_struct.endian = SPI_ENDIAN_MSB; //<2F>Ӹ<EFBFBD>λ<EFBFBD><CEBB>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>
|
||||
spi_init(BSP_RF_SPI, &spi_init_struct);
|
||||
|
||||
/* ʹ<><CAB9> */
|
||||
/* SPI enable */
|
||||
spi_enable(BSP_RF_SPI);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ͨ<EFBFBD><CDA8>SPI<50>ӿڳ<D3BF>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*/
|
||||
void Ebyte_BSP_SPI_Deinit( void )
|
||||
{
|
||||
/* SPI enable */
|
||||
spi_disable(BSP_RF_SPI);
|
||||
|
||||
spi_i2s_deinit(BSP_RF_SPI);
|
||||
|
||||
spi_parameter_struct spi_init_struct;
|
||||
|
||||
rcu_periph_clock_disable(BSP_RF_SPI_CLOCK);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief RFģ<46><C4A3>SPIͨ<49><CDA8><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param data <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @return <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @note stm8l SPI<50>⺯<EFBFBD><E2BAAF><EFBFBD>е<EFBFBD>SPI_SendData()/SPI_ReceiveData() <20><><EFBFBD><EFBFBD>ֱ<EFBFBD><D6B1>ʹ<EFBFBD><CAB9>
|
||||
*/
|
||||
uint8_t Ebyte_BSP_SpiTransAndRecv( uint8_t data )
|
||||
{
|
||||
while(RESET == spi_i2s_flag_get(BSP_RF_SPI, SPI_FLAG_TBE));
|
||||
spi_i2s_data_transmit(BSP_RF_SPI, data);
|
||||
|
||||
while(RESET == spi_i2s_flag_get(BSP_RF_SPI, SPI_FLAG_RBNE));
|
||||
return spi_i2s_data_receive(BSP_RF_SPI);
|
||||
|
||||
// BSP_RF_SPI->DR = data;
|
||||
// while ((BSP_RF_SPI->SR & SPI_FLAG_TXE) == RESET);
|
||||
//
|
||||
// while ((BSP_RF_SPI->SR & SPI_FLAG_RXNE) == RESET);
|
||||
// return BSP_RF_SPI->DR;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>
|
||||
*
|
||||
* @note ʹ<><CAB9><EFBFBD><EFBFBD>TIM3<4D><33><EFBFBD><EFBFBD>1ms<6D><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD>
|
||||
* TIM3<4D><33><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>ΪHSI 16MHz, 128<32><38>Ƶ<EFBFBD><C6B5>Ϊ 16 MHz / 128 = 125 000 Hz
|
||||
* Ŀ<>궨ʱ1ms <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڼ<EFBFBD>Ϊ ( 0.001 x 125000 - 1) = 124
|
||||
*/
|
||||
void Ebyte_BSP_TIMER_Init( void )
|
||||
{
|
||||
timer_parameter_struct timer_initpara;
|
||||
/**
|
||||
TIMER2 Configuration:
|
||||
TIMER2CLK = SystemCoreClock/180 = 1MHz.
|
||||
TIMER2 configuration is timing mode, and the timing is 1ms(1000/1 = 1ms).
|
||||
*/
|
||||
|
||||
/* enable the peripherals clock */
|
||||
rcu_timer_clock_prescaler_config(RCU_TIMER_PSC_MUL4);
|
||||
rcu_periph_clock_enable(BSP_RF_TIMER_RCU);
|
||||
|
||||
/* deinit a TIMER */
|
||||
timer_deinit(BSP_RF_TIMER);
|
||||
/* initialize TIMER init parameter struct */
|
||||
timer_struct_para_init(&timer_initpara);
|
||||
/* TIMER2 configuration */
|
||||
timer_initpara.prescaler = 179;
|
||||
timer_initpara.alignedmode = TIMER_COUNTER_EDGE;
|
||||
timer_initpara.counterdirection = TIMER_COUNTER_UP;
|
||||
timer_initpara.period = 1000;
|
||||
timer_initpara.clockdivision = TIMER_CKDIV_DIV1;
|
||||
timer_init(BSP_RF_TIMER, &timer_initpara);
|
||||
|
||||
/* clear interrupt bit */
|
||||
timer_interrupt_flag_clear(BSP_RF_TIMER, TIMER_INT_FLAG_UP);
|
||||
/* enable the TIMER interrupt */
|
||||
timer_interrupt_enable(BSP_RF_TIMER, TIMER_INT_UP);
|
||||
/* enable a TIMER */
|
||||
timer_enable(BSP_RF_TIMER);
|
||||
|
||||
nvic_irq_enable(TIMER2_IRQn, 0, 0);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>
|
||||
*
|
||||
* @note ʹ<><CAB9><EFBFBD><EFBFBD>TIM3<4D><33><EFBFBD><EFBFBD>1ms<6D><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ж<EFBFBD>
|
||||
* TIM3<4D><33><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1>ΪHSI 16MHz, 128<32><38>Ƶ<EFBFBD><C6B5>Ϊ 16 MHz / 128 = 125 000 Hz
|
||||
* Ŀ<>궨ʱ1ms <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڼ<EFBFBD>Ϊ ( 0.001 x 125000 - 1) = 124
|
||||
*/
|
||||
void Ebyte_BSP_TIMER_Deinit( void )
|
||||
{
|
||||
nvic_irq_disable(TIMER2_IRQn);
|
||||
|
||||
/* enable a TIMER */
|
||||
timer_disable(BSP_RF_TIMER);
|
||||
/* enable the TIMER interrupt */
|
||||
timer_interrupt_disable(BSP_RF_TIMER, TIMER_INT_UP);
|
||||
/* clear interrupt bit */
|
||||
timer_interrupt_flag_clear(BSP_RF_TIMER, TIMER_INT_FLAG_UP);
|
||||
|
||||
/* enable the peripherals clock */
|
||||
rcu_periph_clock_disable(BSP_RF_TIMER_RCU);
|
||||
|
||||
/* deinit a TIMER */
|
||||
timer_deinit(BSP_RF_TIMER);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><D4B4>ʼ<EFBFBD><CABC>
|
||||
*
|
||||
* @note <20>ڲ<EFBFBD>ʱ<EFBFBD><CAB1>HSI x 16MHz
|
||||
* <20>û<EFBFBD>ͨ<EFBFBD>Ŵ<EFBFBD><C5B4><EFBFBD> x USART1
|
||||
* <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ͨ<EFBFBD>Žӿ<C5BD> x SPI1
|
||||
* <20><>ʱ<EFBFBD><CAB1> x TIM3
|
||||
* <20><><EFBFBD><EFBFBD> x 2
|
||||
* ָʾ<D6B8><CABE> x 2
|
||||
*/
|
||||
void Ebyte_BSP_Init( void )
|
||||
{
|
||||
/* ʱ<><CAB1> <20><>ʼ<EFBFBD><CABC> */
|
||||
// Ebyte_BSP_HSI_Init();
|
||||
|
||||
/* IO <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_GPIO_Init();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> <20><>ʼ<EFBFBD><CABC> */
|
||||
// Ebyte_BSP_UART_Init();
|
||||
|
||||
/* SPI<50>ӿ<EFBFBD> <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_SPI_Init();
|
||||
|
||||
/* <20><>ʱ<EFBFBD><CAB1> <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_TIMER_Init();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD> <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BTN_FIFO_Init( &BSP_BTN_FIFO );
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief E15-EVB02 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><D4B4>ʼ<EFBFBD><CABC>
|
||||
*
|
||||
* @note <20>ڲ<EFBFBD>ʱ<EFBFBD><CAB1>HSI x 16MHz
|
||||
* <20>û<EFBFBD>ͨ<EFBFBD>Ŵ<EFBFBD><C5B4><EFBFBD> x USART1
|
||||
* <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>ͨ<EFBFBD>Žӿ<C5BD> x SPI1
|
||||
* <20><>ʱ<EFBFBD><CAB1> x TIM3
|
||||
* <20><><EFBFBD><EFBFBD> x 2
|
||||
* ָʾ<D6B8><CABE> x 2
|
||||
*/
|
||||
void Ebyte_BSP_Deinit( void )
|
||||
{
|
||||
/* <20><>ʱ<EFBFBD><CAB1> <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_TIMER_Deinit();
|
||||
|
||||
/* SPI<50>ӿ<EFBFBD> <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_SPI_Deinit();
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> <20><>ʼ<EFBFBD><CABC> */
|
||||
// Ebyte_BSP_UART_Init();
|
||||
|
||||
/* IO <20><>ʼ<EFBFBD><CABC> */
|
||||
Ebyte_BSP_GPIO_Deinit();
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD>LED <20><>/<2F><>/<2F><>ת
|
||||
*
|
||||
* @param LEDx <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ŷ<EFBFBD><C5B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @arg BSP_LED_1 : LED1
|
||||
* @arg BSP_LED_2 : LED2
|
||||
*
|
||||
* @param ctl <20><> / <20><>
|
||||
* @arg OFF : <20><>
|
||||
* @arg ON : <20><>
|
||||
* @arg TOGGLE : <20><>ת
|
||||
*/
|
||||
void Ebyte_BSP_LedControl( BSP_LED_t LEDx , BSP_LED_Ctl_t ctl)
|
||||
{
|
||||
if( TOGGLE == ctl )
|
||||
{
|
||||
switch( LEDx )
|
||||
{
|
||||
case BSP_LED_1 : gpio_bit_toggle( BSP_GPIO_PORT_LED_1, BSP_GPIO_PIN_LED_1); break;
|
||||
case BSP_LED_2 : gpio_bit_toggle( BSP_GPIO_PORT_LED_2, BSP_GPIO_PIN_LED_2); break;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
switch( LEDx )
|
||||
{
|
||||
case BSP_LED_1 : gpio_bit_write( BSP_GPIO_PORT_LED_1, BSP_GPIO_PIN_LED_1, (BitAction)ctl); break;
|
||||
case BSP_LED_2 : gpio_bit_write( BSP_GPIO_PORT_LED_2, BSP_GPIO_PIN_LED_2, (BitAction)ctl); break;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD>ڶ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD>ĺ<EFBFBD><C4BA><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @param nTime <20><>λ:<3A><><EFBFBD><EFBFBD>
|
||||
*/
|
||||
void Ebyte_BSP_DelayMs( volatile uint32_t nTime )
|
||||
{
|
||||
Ebyte_TimerDelayCounter = nTime;
|
||||
|
||||
while( Ebyte_TimerDelayCounter !=0 );
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD> <20><>ʱ<EFBFBD><CAB1><EFBFBD>жϵ<D0B6><CFB5><EFBFBD>
|
||||
*/
|
||||
void Ebyte_BSP_TimerDecrement(void)
|
||||
{
|
||||
if( Ebyte_TimerDelayCounter != 0 )
|
||||
{
|
||||
Ebyte_TimerDelayCounter--;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* !
|
||||
* @brief <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>״̬
|
||||
*
|
||||
* @param btn <20><>Ӧ<EFBFBD>İ<EFBFBD><C4B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @arg BSP_BUTTON_1 :<3A><><EFBFBD><EFBFBD>1
|
||||
* @arg BSP_BUTTON_2 :<3A><><EFBFBD><EFBFBD>2
|
||||
* @return 0:<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>0:<3A><><EFBFBD><EFBFBD>δ<EFBFBD><CEB4><EFBFBD><EFBFBD>
|
||||
* @note <20><><EFBFBD>ذ<EFBFBD><D8B0><EFBFBD>δ<EFBFBD><CEB4><EFBFBD><EFBFBD>ʱ IO<49><4F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬ <20><>Ϊ1<CEAA><31><EFBFBD><EFBFBD><EFBFBD>º<EFBFBD>IO<49>ӵ<EFBFBD> <20><>Ϊ0
|
||||
*/
|
||||
uint8_t Ebyte_BSP_ReadButton( BSP_BUTTON_t btn )
|
||||
{
|
||||
BitStatus result = RESET;
|
||||
|
||||
switch ( btn )
|
||||
{
|
||||
case BSP_BUTTON_1: result = gpio_input_bit_get( BSP_GPIO_PORT_BUTTON_1 , BSP_GPIO_PIN_BUTTON_1); break;
|
||||
// case BSP_BUTTON_2: result = GPIO_ReadInputDataBit( BSP_GPIO_PORT_BUTTON_2 , BSP_GPIO_PIN_BUTTON_2); break;
|
||||
default : break;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
/* !
|
||||
* @brief <20><><EFBFBD>ڷ<EFBFBD><DAB7>ͺ<EFBFBD><CDBA><EFBFBD>
|
||||
*/
|
||||
void Ebyte_BSP_UartTransmit( uint8_t *buffer , uint16_t length )
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
for( i = 0; i < length; i++ ) {
|
||||
while(RESET == usart_flag_get(LOG_UART, USART_FLAG_TBE));
|
||||
usart_data_transmit(LOG_UART, buffer[i]);
|
||||
}
|
||||
}
|
||||
|
||||
181
MBL/source_ns/drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board.h
Executable file
181
MBL/source_ns/drivers/CMT2310/2_Ebyte_Board_Support/E15-EVB02/board.h
Executable file
@ -0,0 +1,181 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board.h
|
||||
* @brief E15-EVB02 <20>弶<EFBFBD><E5BCB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
* @details <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>μ<EFBFBD> https://www.ebyte.com/
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-06
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* <20>ɶ<EFBFBD><C9B6>ڰ<EFBFBD><DAB0>ص<EFBFBD><D8B5>ӿƼ<D3BF><C6BC><EFBFBD><EFBFBD><EFBFBD>˾
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
#ifndef __EBYTE_BOARD_H__
|
||||
#define __EBYTE_BOARD_H__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <gd32w51x.h>
|
||||
#include <systick.h>
|
||||
#include "board_mini_printf.h"
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> LED */
|
||||
#define BSP_GPIO_RCU_E48_LED RCU_GPIOB
|
||||
#define BSP_GPIO_PORT_LED_1 GPIOB
|
||||
#define BSP_GPIO_PIN_LED_1 GPIO_PIN_6
|
||||
|
||||
#define BSP_GPIO_PORT_LED_2 GPIOA
|
||||
#define BSP_GPIO_PIN_LED_2 GPIO_PIN_15
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
||||
#define BSP_GPIO_RCU_E48_BUTTON RCU_GPIOA
|
||||
#define BSP_GPIO_PORT_BUTTON_1 GPIOA
|
||||
#define BSP_GPIO_PIN_BUTTON_1 GPIO_PIN_2
|
||||
|
||||
//#define BSP_GPIO_PORT_BUTTON_2 GPIOA
|
||||
//#define BSP_GPIO_PIN_BUTTON_2 GPIO_PIN_5
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SPIͨ<49>Žӿ<C5BD> */
|
||||
#define BSP_GPIO_RCU_E48_SPI RCU_GPIOB
|
||||
|
||||
#define BSP_GPIO_PORT_SPI GPIOB
|
||||
#define BSP_GPIO_PIN_SPI_NSS GPIO_PIN_12
|
||||
#define BSP_GPIO_PIN_SPI_SCK GPIO_PIN_13
|
||||
#define BSP_GPIO_PIN_SPI_MISO GPIO_PIN_14
|
||||
#define BSP_GPIO_PIN_SPI_MOSI GPIO_PIN_15
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ͨ<>Ŵ<EFBFBD><C5B4><EFBFBD> */
|
||||
#define BSP_GPIO_PORT_UART_TX GPIOA
|
||||
#define BSP_GPIO_PIN_UART_TX GPIO_PIN_2
|
||||
|
||||
#define BSP_GPIO_PORT_UART_RX GPIOA
|
||||
#define BSP_GPIO_PIN_UART_RX GPIO_PIN_3
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> EBYTE<54><45><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
|
||||
|
||||
/* E48 */
|
||||
#define BSP_GPIO_RCU_E48_GPIO RCU_GPIOC
|
||||
|
||||
#define BSP_GPIO_PORT_E48_GP0 GPIOC
|
||||
#define BSP_GPIO_PIN_E48_GP0 GPIO_PIN_0
|
||||
#define BSP_GPIO_PORT_E48_NIRQ GPIOC
|
||||
#define BSP_GPIO_PIN_E48_NIRQ GPIO_PIN_1
|
||||
#define BSP_GPIO_PORT_E48_GP3 GPIOC
|
||||
#define BSP_GPIO_PIN_E48_GP3 GPIO_PIN_3
|
||||
#define BSP_GPIO_PORT_E48_GP4 GPIOC
|
||||
#define BSP_GPIO_PIN_E48_GP4 GPIO_PIN_4
|
||||
#define BSP_GPIO_PORT_E48_GP5 GPIOC
|
||||
#define BSP_GPIO_PIN_E48_GP5 GPIO_PIN_5
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SPI */
|
||||
#define BSP_RF_SPI SPI1
|
||||
#define BSP_RF_SPI_CLOCK RCU_SPI1
|
||||
#define Ebyte_BSP_RfSpiSelected() gpio_bit_write( BSP_GPIO_PORT_SPI, BSP_GPIO_PIN_SPI_NSS, RESET )
|
||||
#define Ebyte_BSP_RfSpiUnselected() gpio_bit_write( BSP_GPIO_PORT_SPI, BSP_GPIO_PIN_SPI_NSS, SET )
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> Timer */
|
||||
#define BSP_RF_TIMER TIMER2
|
||||
#define BSP_RF_TIMER_RCU RCU_TIMER2
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IO */
|
||||
|
||||
///* E07 */
|
||||
//#define Ebyte_BSP_RfBusyIoRead() gpio_input_bit_get( BSP_GPIO_PORT_BUSY , BSP_GPIO_PIN_BUSY)
|
||||
//#define Ebyte_BSP_RfGdo0IoRead() gpio_input_bit_get( BSP_GPIO_PORT_E07_GDO0 , BSP_GPIO_PIN_E07_GDO0)
|
||||
//#define Ebyte_BSP_RfGdo1IoRead() gpio_input_bit_get( BSP_GPIO_PORT_E07_GDO1 , BSP_GPIO_PIN_E07_GDO1)
|
||||
///* E10 */
|
||||
//#define Ebyte_BSP_E10IrqIoRead() gpio_input_bit_get( BSP_GPIO_PORT_E10_IRQ , BSP_GPIO_PIN_E10_IRQ)
|
||||
//#define Ebyte_BSP_E10Dio2Read() gpio_input_bit_get( BSP_GPIO_PORT_E10_DIO2 , BSP_GPIO_PIN_E10_DIO2)
|
||||
//#define Ebyte_BSP_E10Dio3Read() gpio_input_bit_get( BSP_GPIO_PORT_E10_DIO3 , BSP_GPIO_PIN_E10_DIO3)
|
||||
//#define Ebyte_BSP_E10SdnIoLow() gpio_bit_write( BSP_GPIO_PORT_E10_SDN , BSP_GPIO_PIN_E10_SDN, RESET )
|
||||
//#define Ebyte_BSP_E10SdnIoHigh() gpio_bit_write( BSP_GPIO_PORT_E10_SDN , BSP_GPIO_PIN_E10_SDN, SET )
|
||||
///* E49 */
|
||||
//#define Ebyte_BSP_E49Dio1IoRead() gpio_input_bit_get( BSP_GPIO_PORT_E49_DIO1 , BSP_GPIO_PIN_E49_DIO1)
|
||||
//#define Ebyte_BSP_E49Dio2IoRead() gpio_input_bit_get( BSP_GPIO_PORT_E49_DIO2 , BSP_GPIO_PIN_E49_DIO2)
|
||||
//#define Ebyte_BSP_E49FcsbIoLow() gpio_bit_write( BSP_GPIO_PORT_E49_FCSB , BSP_GPIO_PIN_E49_FCSB, RESET )
|
||||
//#define Ebyte_BSP_E49FcsbIoHigh() gpio_bit_write( BSP_GPIO_PORT_E49_FCSB , BSP_GPIO_PIN_E49_FCSB, SET )
|
||||
//#define Ebyte_BSP_E49CsbIoLow() gpio_bit_write( BSP_GPIO_PORT_E49_CSB , BSP_GPIO_PIN_E49_CSB, RESET )
|
||||
//#define Ebyte_BSP_E49CsbIoHigh() gpio_bit_write( BSP_GPIO_PORT_E49_CSB , BSP_GPIO_PIN_E49_CSB, SET )
|
||||
//#define Ebyte_BSP_E49SlckIoLow() gpio_bit_write( BSP_GPIO_PORT_E49_SLCK , BSP_GPIO_PIN_E49_SLCK, RESET )
|
||||
//#define Ebyte_BSP_E49SlckIoHigh() gpio_bit_write( BSP_GPIO_PORT_E49_SLCK , BSP_GPIO_PIN_E49_SLCK, SET )
|
||||
//#define Ebyte_BSP_E49SdioIoLow() gpio_bit_write( BSP_GPIO_PORT_E49_SDIO , BSP_GPIO_PIN_E49_SDIO, RESET )
|
||||
//#define Ebyte_BSP_E49SdioIoHigh() gpio_bit_write( BSP_GPIO_PORT_E49_SDIO , BSP_GPIO_PIN_E49_SDIO, SET )
|
||||
//#define Ebyte_BSP_E49SdioIoOutput() gpio_mode_set( BSP_GPIO_PORT_E49_SDIO, BSP_GPIO_PIN_E49_SDIO, GPIO_Mode_Out_PP_High_Fast )
|
||||
//#define Ebyte_BSP_E49SdioIoInput() GPIO_Init( BSP_GPIO_PORT_E49_SDIO, BSP_GPIO_PIN_E49_SDIO, GPIO_Mode_In_FL_No_IT )
|
||||
//#define Ebyte_BSP_E49SdioIoRead() GPIO_ReadInputDataBit( BSP_GPIO_PORT_E49_SDIO , BSP_GPIO_PIN_E49_SDIO)
|
||||
|
||||
/* E48 */
|
||||
#define Ebyte_BSP_E48GPIO4Read() gpio_input_bit_get( BSP_GPIO_PORT_E48_GP4 , BSP_GPIO_PIN_E48_GP4)
|
||||
|
||||
/* ȫ<><C8AB><EFBFBD>ж<EFBFBD> */
|
||||
#define Ebyte_BSP_GlobalIntEnable() __enable_irq()
|
||||
#define Ebyte_BSP_GlobalIntDisable() __disable_irq()
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> UART */
|
||||
#define BSP_USER_UART USART1
|
||||
#define BSP_USER_UART_CLOCK CLK_Peripheral_USART1
|
||||
#define BSP_USER_UART_BAUDRATE 9600 //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
#define BSP_USER_UART_PARITY USART_Parity_No //USART_Parity_No:<3A><>У<EFBFBD><D0A3> USART_Parity_Even:<3A><>У<EFBFBD><D0A3> USART_Parity_Odd:żУ<C5BC><D0A3>
|
||||
#define BSP_USER_UART_IRQ USART1_RX_IRQn //<2F>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD>
|
||||
#define BSP_USER_UART_IRQ_LEVEL ITC_PriorityLevel_2 //<2F><><EFBFBD>ȼ<EFBFBD>
|
||||
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD> */
|
||||
#define BSP_BTN_FIFO_LENGTH 16
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>Դ<EFBFBD>ӡ<EFBFBD><D3A1>Ϣ <20>رմ<D8B1>ӡ<EFBFBD><D3A1>Ҫע<D2AA>͵<EFBFBD><CDB5>궨<EFBFBD><EAB6A8> EBYTE_DEBUG */
|
||||
#define EBYTE_DEBUG
|
||||
|
||||
#ifdef EBYTE_DEBUG
|
||||
#define DEBUG(format, ...) mprintf(format, ##__VA_ARGS__)
|
||||
#else
|
||||
#define DEBUG(...)
|
||||
#endif
|
||||
|
||||
typedef enum { BSP_LED_1 = 0, BSP_LED_2 } BSP_LED_t;
|
||||
typedef enum { OFF = 0, ON , TOGGLE} BSP_LED_Ctl_t;
|
||||
typedef enum { UART_8N1 = 0, UART_8O1, UART_8E1 } BSP_UART_Parity_t;
|
||||
|
||||
typedef enum { BSP_BUTTON_1 = 0, BSP_BUTTON_2 } BSP_BUTTON_t;
|
||||
typedef enum
|
||||
{
|
||||
BTN_1_SHORT, //<2F><><EFBFBD><EFBFBD>1 <20>̰<EFBFBD>
|
||||
BTN_1_LONG, //<2F><><EFBFBD><EFBFBD>1 <20><><EFBFBD><EFBFBD>
|
||||
BTN_2_SHORT, //<2F><><EFBFBD><EFBFBD>2 <20>̰<EFBFBD>
|
||||
BTN_2_LONG, //<2F><><EFBFBD><EFBFBD>2 <20><><EFBFBD><EFBFBD>
|
||||
}BSP_BTN_EVENT_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint8_t fifoLen ;
|
||||
uint8_t fifoRead ;
|
||||
uint8_t fifoWrite ;
|
||||
uint8_t buff[BSP_BTN_FIFO_LENGTH];
|
||||
}BSP_BTN_FIFO_t;
|
||||
|
||||
extern BSP_BTN_FIFO_t BSP_BTN_FIFO;
|
||||
|
||||
void Ebyte_BSP_Init( void );
|
||||
void Ebyte_BSP_Deinit( void );
|
||||
void Ebyte_BTN_FIFO_Init(BSP_BTN_FIFO_t *fifo);
|
||||
void Ebyte_BSP_DelayMs( volatile uint32_t nTime );
|
||||
void Ebyte_BSP_TimerDecrement(void);
|
||||
void Ebyte_BSP_LedControl( BSP_LED_t LEDx , BSP_LED_Ctl_t ctl);
|
||||
void Ebyte_BSP_UartTransmit( uint8_t *buffer , uint16_t length );
|
||||
|
||||
uint8_t Ebyte_BSP_ReadButton( BSP_BUTTON_t btn );
|
||||
uint8_t Ebyte_BSP_SpiTransAndRecv( uint8_t data );
|
||||
|
||||
uint8_t Ebyte_BTN_FIFO_Push(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t event);
|
||||
uint8_t Ebyte_BTN_FIFO_Pop(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t *event);
|
||||
uint32_t Ebyte_BSP_TimerGetTick(void);
|
||||
|
||||
#endif // !__EBYTE_BOARD_H__
|
||||
@ -1,147 +1,147 @@
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board_button.c
|
||||
* @brief 通用 按键队列驱动库
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-06
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "board.h"
|
||||
#include "ebyte_kfifo.h"
|
||||
#include "ebyte_core.h"
|
||||
|
||||
static uint16_t Button1_TickCounter = 0;
|
||||
static uint16_t Button2_TickCounter = 0;
|
||||
|
||||
extern Ebyte_FIFO_t hfifo;
|
||||
extern uint8_t FIFO_isTimeCheckReady;
|
||||
static uint32_t FIFO_TickCounter = 0;
|
||||
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
void IT_Timer_ButtonCheck(void);
|
||||
|
||||
|
||||
/* !
|
||||
* @brief 按键队列初始化
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
*/
|
||||
void Ebyte_BTN_FIFO_Init(BSP_BTN_FIFO_t *fifo)
|
||||
{
|
||||
fifo->fifoLen = 0;
|
||||
fifo->fifoRead = 0;
|
||||
fifo->fifoWrite = 0;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 按键队列入队
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
* @param event 按键的事件 主要为各按键的短按/长按
|
||||
* @return 0:正常 1:队列溢出
|
||||
* @note 入队位置可循环但不会覆盖已入队数据,队满时会导致数据丢失!
|
||||
*/
|
||||
uint8_t Ebyte_BTN_FIFO_Push(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t event)
|
||||
{
|
||||
/* 入队数据包长度预先自增 */
|
||||
fifo->fifoLen++;
|
||||
|
||||
/* 如果入队长度大于了设定长度 */
|
||||
if(fifo->fifoLen > BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoLen = BSP_BTN_FIFO_LENGTH;//入队长度不再增加
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 正常入队 */
|
||||
fifo->buff[fifo->fifoWrite] = event;
|
||||
|
||||
/* 如果入队位置已经到了队尾 */
|
||||
if(++fifo->fifoWrite >= BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoWrite = 0; //那么下一个入队数据将回到队首开始入队
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 按键队列出队
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
* @param event 按键的事件 主要为各按键的短按/长按
|
||||
* @return 0:正常 1:队列为空
|
||||
*/
|
||||
uint8_t Ebyte_BTN_FIFO_Pop(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t *event)
|
||||
{
|
||||
/* 如果入队长度为0 即空队列 */
|
||||
if(fifo->fifoLen == 0)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 入队数据长度自减 */
|
||||
fifo->fifoLen--;
|
||||
|
||||
/* 正常出队 */
|
||||
*event = (BSP_BTN_EVENT_t )(fifo->buff[fifo->fifoRead]);
|
||||
|
||||
/* 如果出队位置已经到了队尾 */
|
||||
if(++fifo->fifoRead >= BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoRead = 0;//那么下一次将从队首开始出队
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 定时器中断 状态机 辅助按键检测
|
||||
*/
|
||||
void IT_Timer_ButtonCheck(void)
|
||||
{
|
||||
/* 如果按键1被按下 */
|
||||
if (!Ebyte_BSP_ReadButton(BSP_BUTTON_1)) {
|
||||
Button1_TickCounter++;
|
||||
} else {
|
||||
if (Button1_TickCounter > 1000) // 1秒 长按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_1_LONG);
|
||||
} else if (Button1_TickCounter > 50) // 50毫秒 短按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_1_SHORT);
|
||||
} else {
|
||||
} // 50毫秒以下 认为是抖动 不操作
|
||||
|
||||
Button1_TickCounter = 0;
|
||||
}
|
||||
|
||||
/* 如果按键2被按下 */
|
||||
if (!Ebyte_BSP_ReadButton(BSP_BUTTON_2)) {
|
||||
Button2_TickCounter++;
|
||||
} else {
|
||||
if (Button2_TickCounter > 1000) // 1秒 长按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_2_LONG);
|
||||
} else if (Button2_TickCounter > 50) // 50毫秒 短按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_2_SHORT);
|
||||
} else {
|
||||
} // 50毫秒以下 认为是抖动 不操作
|
||||
|
||||
Button2_TickCounter = 0;
|
||||
}
|
||||
}
|
||||
/**
|
||||
**********************************************************************************
|
||||
* @file board_button.c
|
||||
* @brief 通用 按键队列驱动库
|
||||
* @author JiangHeng
|
||||
* @date 2021-05-06
|
||||
* @version 1.0.0
|
||||
**********************************************************************************
|
||||
* @copyright BSD License
|
||||
* 成都亿佰特电子科技有限公司
|
||||
* ______ ____ __ __ _______ ______
|
||||
* | ____| | _ \ \ \ / / |__ __| | ____|
|
||||
* | |__ | |_) | \ \_/ / | | | |__
|
||||
* | __| | _ < \ / | | | __|
|
||||
* | |____ | |_) | | | | | | |____
|
||||
* |______| |____/ |_| |_| |______|
|
||||
*
|
||||
**********************************************************************************
|
||||
*/
|
||||
|
||||
#include "board.h"
|
||||
#include "ebyte_kfifo.h"
|
||||
#include "ebyte_core.h"
|
||||
|
||||
static uint16_t Button1_TickCounter = 0;
|
||||
static uint16_t Button2_TickCounter = 0;
|
||||
|
||||
extern Ebyte_FIFO_t hfifo;
|
||||
extern uint8_t FIFO_isTimeCheckReady;
|
||||
static uint32_t FIFO_TickCounter = 0;
|
||||
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
void IT_Timer_ButtonCheck(void);
|
||||
|
||||
|
||||
/* !
|
||||
* @brief 按键队列初始化
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
*/
|
||||
void Ebyte_BTN_FIFO_Init(BSP_BTN_FIFO_t *fifo)
|
||||
{
|
||||
fifo->fifoLen = 0;
|
||||
fifo->fifoRead = 0;
|
||||
fifo->fifoWrite = 0;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 按键队列入队
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
* @param event 按键的事件 主要为各按键的短按/长按
|
||||
* @return 0:正常 1:队列溢出
|
||||
* @note 入队位置可循环但不会覆盖已入队数据,队满时会导致数据丢失!
|
||||
*/
|
||||
uint8_t Ebyte_BTN_FIFO_Push(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t event)
|
||||
{
|
||||
/* 入队数据包长度预先自增 */
|
||||
fifo->fifoLen++;
|
||||
|
||||
/* 如果入队长度大于了设定长度 */
|
||||
if(fifo->fifoLen > BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoLen = BSP_BTN_FIFO_LENGTH;//入队长度不再增加
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 正常入队 */
|
||||
fifo->buff[fifo->fifoWrite] = event;
|
||||
|
||||
/* 如果入队位置已经到了队尾 */
|
||||
if(++fifo->fifoWrite >= BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoWrite = 0; //那么下一个入队数据将回到队首开始入队
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 按键队列出队
|
||||
*
|
||||
* @param fifo 指向按键事件队列结构体的指针
|
||||
* @param event 按键的事件 主要为各按键的短按/长按
|
||||
* @return 0:正常 1:队列为空
|
||||
*/
|
||||
uint8_t Ebyte_BTN_FIFO_Pop(BSP_BTN_FIFO_t *fifo, BSP_BTN_EVENT_t *event)
|
||||
{
|
||||
/* 如果入队长度为0 即空队列 */
|
||||
if(fifo->fifoLen == 0)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 入队数据长度自减 */
|
||||
fifo->fifoLen--;
|
||||
|
||||
/* 正常出队 */
|
||||
*event = (BSP_BTN_EVENT_t )(fifo->buff[fifo->fifoRead]);
|
||||
|
||||
/* 如果出队位置已经到了队尾 */
|
||||
if(++fifo->fifoRead >= BSP_BTN_FIFO_LENGTH)
|
||||
{
|
||||
fifo->fifoRead = 0;//那么下一次将从队首开始出队
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief 定时器中断 状态机 辅助按键检测
|
||||
*/
|
||||
void IT_Timer_ButtonCheck(void)
|
||||
{
|
||||
/* 如果按键1被按下 */
|
||||
if (!Ebyte_BSP_ReadButton(BSP_BUTTON_1)) {
|
||||
Button1_TickCounter++;
|
||||
} else {
|
||||
if (Button1_TickCounter > 1000) // 1秒 长按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_1_LONG);
|
||||
} else if (Button1_TickCounter > 50) // 50毫秒 短按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_1_SHORT);
|
||||
} else {
|
||||
} // 50毫秒以下 认为是抖动 不操作
|
||||
|
||||
Button1_TickCounter = 0;
|
||||
}
|
||||
|
||||
/* 如果按键2被按下 */
|
||||
if (!Ebyte_BSP_ReadButton(BSP_BUTTON_2)) {
|
||||
Button2_TickCounter++;
|
||||
} else {
|
||||
if (Button2_TickCounter > 1000) // 1秒 长按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_2_LONG);
|
||||
} else if (Button2_TickCounter > 50) // 50毫秒 短按
|
||||
{
|
||||
Ebyte_BTN_FIFO_Push(&BSP_BTN_FIFO, BTN_2_SHORT);
|
||||
} else {
|
||||
} // 50毫秒以下 认为是抖动 不操作
|
||||
|
||||
Button2_TickCounter = 0;
|
||||
}
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
#ifndef __BOARD_BUTTON_H__
|
||||
#define __BOARD_BUTTON_H__
|
||||
|
||||
void IT_Timer_ButtonCheck(void);
|
||||
|
||||
#ifndef __BOARD_BUTTON_H__
|
||||
#define __BOARD_BUTTON_H__
|
||||
|
||||
void IT_Timer_ButtonCheck(void);
|
||||
|
||||
#endif // !__BOARD_BUTTON_H__
|
||||
@ -1,203 +1,203 @@
|
||||
#include <stdio.h>
|
||||
#include "stdarg.h"
|
||||
#include "gd32w51x.h"
|
||||
//#include "stm8l15x_usart.h"
|
||||
#include "board_mini_printf.h"
|
||||
#include "platform_def.h"
|
||||
|
||||
/* !
|
||||
* @brief 目标硬件串口通信接口
|
||||
*
|
||||
* @param data 写入的数据 1 Byte
|
||||
*/
|
||||
static void send_uart_data(uint8_t data)
|
||||
{
|
||||
while(RESET == usart_flag_get(LOG_UART, USART_FLAG_TBE));
|
||||
usart_data_transmit(LOG_UART, data);
|
||||
}
|
||||
|
||||
/*
|
||||
功能:将int型数据转为2,8,10,16进制字符串
|
||||
参数:value --- 输入的int整型数
|
||||
str --- 存储转换的字符串
|
||||
radix --- 进制类型选择
|
||||
注意:8位单片机int字节只占2个字节
|
||||
*/
|
||||
static char *sky_itoa(int value, char *str, unsigned int radix)
|
||||
{
|
||||
char list[] = "0123456789ABCDEF";
|
||||
unsigned int tmp_value;
|
||||
int i = 0, j, k = 0;
|
||||
// if (NULL == str) {
|
||||
if (0 == str) {
|
||||
// return NULL;
|
||||
return 0;
|
||||
}
|
||||
if (2 != radix && 8 != radix && 10 != radix && 16 != radix) {
|
||||
// return NULL;
|
||||
return 0;
|
||||
}
|
||||
if (radix == 10 && value < 0) {
|
||||
//十进制且为负数
|
||||
tmp_value = (unsigned int)(0 - value);
|
||||
str[i++] = '-';
|
||||
k = 1;
|
||||
} else {
|
||||
tmp_value = (unsigned int)value;
|
||||
}
|
||||
//数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[tmp_value%radix];
|
||||
tmp_value /= radix;
|
||||
} while(tmp_value);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
char tmp;
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
/*
|
||||
功能:将double型数据转为字符串
|
||||
参数:value --- 输入的double浮点数
|
||||
str --- 存储转换的字符串
|
||||
eps --- 保留小数位选择,至少保留一个小数位,至多保留4个小数位
|
||||
注意:8位单片机int字节只占2个字节
|
||||
*/
|
||||
static void sky_ftoa(double value, char *str, unsigned int eps)
|
||||
{
|
||||
unsigned int integer;
|
||||
double decimal;
|
||||
char list[] = "0123456789";
|
||||
int i = 0, j, k = 0;
|
||||
//将整数及小数部分提取出来
|
||||
if (value < 0) {
|
||||
decimal = (double)(((int)value) - value);
|
||||
integer = (unsigned int)(0 - value);
|
||||
str[i ++] = '-';
|
||||
k = 1;
|
||||
} else {
|
||||
integer = (unsigned int)(value);
|
||||
decimal = (double)(value - integer);
|
||||
}
|
||||
//整数部分数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[integer%10];
|
||||
integer /= 10;
|
||||
} while(integer);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
char tmp;
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
//处理小数部分
|
||||
if (eps < 1 || eps > 4) {
|
||||
eps = 4;
|
||||
}
|
||||
|
||||
//精度问题,防止输入1.2输出1.19等情况
|
||||
double pp = 0.1;
|
||||
for (j = 0; j <= eps; j++) {
|
||||
pp *= 0.1;
|
||||
}
|
||||
decimal += pp;
|
||||
while (eps) {
|
||||
decimal *= 10;
|
||||
eps --;
|
||||
}
|
||||
int tmp_decimal = (int)decimal;
|
||||
str[i ++] = '.';
|
||||
k = i;
|
||||
//整数部分数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[tmp_decimal%10];
|
||||
tmp_decimal /= 10;
|
||||
} while(tmp_decimal);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
str[i] = '\0';
|
||||
}
|
||||
|
||||
|
||||
void mprintf(char * Data, ...)
|
||||
{
|
||||
const char *s;
|
||||
int d;
|
||||
char buf[16];
|
||||
uint8_t txdata;
|
||||
va_list ap;
|
||||
va_start(ap, Data);
|
||||
while ( * Data != 0 ) {
|
||||
if ( * Data == 0x5c ) {
|
||||
switch ( *++Data ) {
|
||||
case 'r':
|
||||
txdata = 0x0d;
|
||||
send_uart_data(txdata);
|
||||
Data ++;
|
||||
break;
|
||||
case 'n':
|
||||
txdata = 0x0a;
|
||||
send_uart_data(txdata);
|
||||
Data ++;
|
||||
break;
|
||||
default:
|
||||
Data ++;
|
||||
break;
|
||||
}
|
||||
} else if ( * Data == '%') {
|
||||
switch ( *++Data ) {
|
||||
case 's':
|
||||
s = va_arg(ap, const char *);
|
||||
for ( ; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
case 'd':
|
||||
d = va_arg(ap, int);
|
||||
sky_itoa(d, buf, 10);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
case 'x': {
|
||||
d = va_arg(ap, int);
|
||||
sky_itoa(d, buf, 16);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
case 'f': {
|
||||
double num = va_arg(ap, double);
|
||||
sky_ftoa(num, buf, 4);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
send_uart_data(*((uint8_t *)Data));
|
||||
Data++;
|
||||
}
|
||||
}
|
||||
#include <stdio.h>
|
||||
#include "stdarg.h"
|
||||
#include "gd32w51x.h"
|
||||
//#include "stm8l15x_usart.h"
|
||||
#include "board_mini_printf.h"
|
||||
#include "platform_def.h"
|
||||
|
||||
/* !
|
||||
* @brief 目标硬件串口通信接口
|
||||
*
|
||||
* @param data 写入的数据 1 Byte
|
||||
*/
|
||||
static void send_uart_data(uint8_t data)
|
||||
{
|
||||
while(RESET == usart_flag_get(LOG_UART, USART_FLAG_TBE));
|
||||
usart_data_transmit(LOG_UART, data);
|
||||
}
|
||||
|
||||
/*
|
||||
功能:将int型数据转为2,8,10,16进制字符串
|
||||
参数:value --- 输入的int整型数
|
||||
str --- 存储转换的字符串
|
||||
radix --- 进制类型选择
|
||||
注意:8位单片机int字节只占2个字节
|
||||
*/
|
||||
static char *sky_itoa(int value, char *str, unsigned int radix)
|
||||
{
|
||||
char list[] = "0123456789ABCDEF";
|
||||
unsigned int tmp_value;
|
||||
int i = 0, j, k = 0;
|
||||
// if (NULL == str) {
|
||||
if (0 == str) {
|
||||
// return NULL;
|
||||
return 0;
|
||||
}
|
||||
if (2 != radix && 8 != radix && 10 != radix && 16 != radix) {
|
||||
// return NULL;
|
||||
return 0;
|
||||
}
|
||||
if (radix == 10 && value < 0) {
|
||||
//十进制且为负数
|
||||
tmp_value = (unsigned int)(0 - value);
|
||||
str[i++] = '-';
|
||||
k = 1;
|
||||
} else {
|
||||
tmp_value = (unsigned int)value;
|
||||
}
|
||||
//数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[tmp_value%radix];
|
||||
tmp_value /= radix;
|
||||
} while(tmp_value);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
char tmp;
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
/*
|
||||
功能:将double型数据转为字符串
|
||||
参数:value --- 输入的double浮点数
|
||||
str --- 存储转换的字符串
|
||||
eps --- 保留小数位选择,至少保留一个小数位,至多保留4个小数位
|
||||
注意:8位单片机int字节只占2个字节
|
||||
*/
|
||||
static void sky_ftoa(double value, char *str, unsigned int eps)
|
||||
{
|
||||
unsigned int integer;
|
||||
double decimal;
|
||||
char list[] = "0123456789";
|
||||
int i = 0, j, k = 0;
|
||||
//将整数及小数部分提取出来
|
||||
if (value < 0) {
|
||||
decimal = (double)(((int)value) - value);
|
||||
integer = (unsigned int)(0 - value);
|
||||
str[i ++] = '-';
|
||||
k = 1;
|
||||
} else {
|
||||
integer = (unsigned int)(value);
|
||||
decimal = (double)(value - integer);
|
||||
}
|
||||
//整数部分数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[integer%10];
|
||||
integer /= 10;
|
||||
} while(integer);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
char tmp;
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
//处理小数部分
|
||||
if (eps < 1 || eps > 4) {
|
||||
eps = 4;
|
||||
}
|
||||
|
||||
//精度问题,防止输入1.2输出1.19等情况
|
||||
double pp = 0.1;
|
||||
for (j = 0; j <= eps; j++) {
|
||||
pp *= 0.1;
|
||||
}
|
||||
decimal += pp;
|
||||
while (eps) {
|
||||
decimal *= 10;
|
||||
eps --;
|
||||
}
|
||||
int tmp_decimal = (int)decimal;
|
||||
str[i ++] = '.';
|
||||
k = i;
|
||||
//整数部分数据转换为字符串,逆序存储
|
||||
do {
|
||||
str[i ++] = list[tmp_decimal%10];
|
||||
tmp_decimal /= 10;
|
||||
} while(tmp_decimal);
|
||||
str[i] = '\0';
|
||||
//将逆序字符串转换为正序
|
||||
for (j = k; j < (i+k)/2; j++) {
|
||||
tmp = str[j];
|
||||
str[j] = str[i-j-1+k];
|
||||
str[i-j-1+k] = tmp;
|
||||
}
|
||||
str[i] = '\0';
|
||||
}
|
||||
|
||||
|
||||
void mprintf(char * Data, ...)
|
||||
{
|
||||
const char *s;
|
||||
int d;
|
||||
char buf[16];
|
||||
uint8_t txdata;
|
||||
va_list ap;
|
||||
va_start(ap, Data);
|
||||
while ( * Data != 0 ) {
|
||||
if ( * Data == 0x5c ) {
|
||||
switch ( *++Data ) {
|
||||
case 'r':
|
||||
txdata = 0x0d;
|
||||
send_uart_data(txdata);
|
||||
Data ++;
|
||||
break;
|
||||
case 'n':
|
||||
txdata = 0x0a;
|
||||
send_uart_data(txdata);
|
||||
Data ++;
|
||||
break;
|
||||
default:
|
||||
Data ++;
|
||||
break;
|
||||
}
|
||||
} else if ( * Data == '%') {
|
||||
switch ( *++Data ) {
|
||||
case 's':
|
||||
s = va_arg(ap, const char *);
|
||||
for ( ; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
case 'd':
|
||||
d = va_arg(ap, int);
|
||||
sky_itoa(d, buf, 10);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
case 'x': {
|
||||
d = va_arg(ap, int);
|
||||
sky_itoa(d, buf, 16);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
case 'f': {
|
||||
double num = va_arg(ap, double);
|
||||
sky_ftoa(num, buf, 4);
|
||||
for (s = buf; *s; s++) {
|
||||
send_uart_data(*((uint8_t *)s));
|
||||
}
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
Data++;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
send_uart_data(*((uint8_t *)Data));
|
||||
Data++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
#ifndef __BOARD_PRINTF_H__
|
||||
#define __BOARD_PRINTF_H__
|
||||
|
||||
void mprintf(char * Data, ...);
|
||||
|
||||
#define EBYTE_LOG printf
|
||||
|
||||
#endif // !__BOARD_PRINTF_H__
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,428 +1,428 @@
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.54
|
||||
; 2023.12.07 13:35
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 410.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
; i_fir_bb_bw_for_cal_freq = 1
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_410MHZ)
|
||||
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x28,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x66,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x8D,
|
||||
0x06,
|
||||
0x00,
|
||||
0xA0,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xCA,
|
||||
0x66,
|
||||
0x00,
|
||||
0x80,
|
||||
0xD8,
|
||||
0x63,
|
||||
0x00,
|
||||
0x80,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xD2,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE6,
|
||||
0x27,
|
||||
0x0C,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x00,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
//#define CMT2310A_AUTO_HOP_ENABLE
|
||||
#ifdef CMT2310A_AUTO_HOP_ENABLE
|
||||
#define freq_space_val 0x0A
|
||||
#define freq_times_val 0x0A
|
||||
#define freq_switch_state_val 0x01
|
||||
#define freq_hop_persist_val 0x00
|
||||
|
||||
/* [CMT page2] */
|
||||
const uint8_t g_cmt2310a_page2[CMT2310A_PAGE2_SIZE] = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.54
|
||||
; 2023.12.07 13:35
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 410.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
; i_fir_bb_bw_for_cal_freq = 1
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_410MHZ)
|
||||
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x28,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x66,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x8D,
|
||||
0x06,
|
||||
0x00,
|
||||
0xA0,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xCA,
|
||||
0x66,
|
||||
0x00,
|
||||
0x80,
|
||||
0xD8,
|
||||
0x63,
|
||||
0x00,
|
||||
0x80,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xD2,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE6,
|
||||
0x27,
|
||||
0x0C,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x00,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
//#define CMT2310A_AUTO_HOP_ENABLE
|
||||
#ifdef CMT2310A_AUTO_HOP_ENABLE
|
||||
#define freq_space_val 0x0A
|
||||
#define freq_times_val 0x0A
|
||||
#define freq_switch_state_val 0x01
|
||||
#define freq_hop_persist_val 0x00
|
||||
|
||||
/* [CMT page2] */
|
||||
const uint8_t g_cmt2310a_page2[CMT2310A_PAGE2_SIZE] = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@ -1,351 +1,351 @@
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 433.920 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_433MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x28,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x6C,
|
||||
0x14,
|
||||
0xAE,
|
||||
0x07,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x8D,
|
||||
0x06,
|
||||
0x00,
|
||||
0xA0,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xCA,
|
||||
0x6C,
|
||||
0x14,
|
||||
0x2E,
|
||||
0xD8,
|
||||
0x6B,
|
||||
0x00,
|
||||
0x80,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xD2,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x27,
|
||||
0x0C,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x0E,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#endif
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 433.920 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_433MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x28,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x6C,
|
||||
0x14,
|
||||
0xAE,
|
||||
0x07,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x8D,
|
||||
0x06,
|
||||
0x00,
|
||||
0xA0,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xCA,
|
||||
0x6C,
|
||||
0x14,
|
||||
0x2E,
|
||||
0xD8,
|
||||
0x6B,
|
||||
0x00,
|
||||
0x80,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xD2,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x27,
|
||||
0x0C,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x0E,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#endif
|
||||
@ -1,352 +1,352 @@
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 868.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if ( PRODUCT_FREQUENCY == CM2310A_868MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x20,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x6C,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x47,
|
||||
0x03,
|
||||
0x00,
|
||||
0x91,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x6C,
|
||||
0x00,
|
||||
0x40,
|
||||
0xD8,
|
||||
0x6B,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xC3,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x14,
|
||||
0x18,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x07,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 868.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if ( PRODUCT_FREQUENCY == CM2310A_868MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x20,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x6C,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x47,
|
||||
0x03,
|
||||
0x00,
|
||||
0x91,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x6C,
|
||||
0x00,
|
||||
0x40,
|
||||
0xD8,
|
||||
0x6B,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xC3,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x14,
|
||||
0x18,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x07,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#endif
|
||||
@ -1,352 +1,352 @@
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 915.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_915MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x20,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x72,
|
||||
0x00,
|
||||
0x00,
|
||||
0x06,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x47,
|
||||
0x03,
|
||||
0x00,
|
||||
0x88,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x14,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x72,
|
||||
0x00,
|
||||
0x40,
|
||||
0xD6,
|
||||
0x73,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xC3,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x14,
|
||||
0x18,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x07,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
#include "CMT2310A_def.h"
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
;---------------------------------------
|
||||
; CMT2310A Configuration File
|
||||
; Generated by CMOSTEK RFPDK 1.53_Update4
|
||||
; 2023.01.14 10:34
|
||||
;---------------------------------------
|
||||
; Mode = Advanced
|
||||
; Part Number = CMT2310A
|
||||
; Frequency = 915.000 MHz
|
||||
; DC-DC = Off
|
||||
; Demodulation = GFSK
|
||||
; Xtal Cap Load = 2
|
||||
; Data Rate = 2.400 kbps
|
||||
; Deviation = 4.800 kHz
|
||||
; Tx Xtal Tol. = 10 ppm
|
||||
; Rx Xtal Tol. = 10 ppm
|
||||
; TRx Matching Network Type = 20 dBm
|
||||
; Tx Power = +20 dBm
|
||||
; Gaussian BT = 0.5
|
||||
; PA Ramp = On-Autosel Rampstep
|
||||
; PA Ramp Step = NA
|
||||
; RF Performance = NA
|
||||
; Output Drive Capability = 0.5mA
|
||||
; Rx Duty-Cycle = Off
|
||||
; Tx Duty-Cycle = Off
|
||||
; Sleep Timer = Off
|
||||
; Sleep Time = NA
|
||||
; Rx Timer = Off
|
||||
; Rx Time T1 = NA
|
||||
; Rx Time T2 = NA
|
||||
; Rx Exit State = STBY
|
||||
; Tx Exit State = STBY
|
||||
; TX Duty Cycle Persist = Off
|
||||
; Packet Done Exit = Off
|
||||
; TX Duty-Cycle Times = 0
|
||||
; SLP Mode = Mode 0
|
||||
; RSSI Valid Source = RSSI Compare
|
||||
; PJD Window = NA
|
||||
; RSSI Compare TH = -127 dBm
|
||||
; CDR Type = Counting
|
||||
; AFC = autosel
|
||||
; FSK2 Data Map = 0:F-low 1:F-high
|
||||
; FSK4 Data Map = NA
|
||||
; FSK4 RX Data Map = NA
|
||||
; CDR Type = Counting
|
||||
; CDR Range Sel FSK = NA
|
||||
; Channel BW = autosel
|
||||
; Baseband BW FSK = autosel
|
||||
; Data Mode = Packet
|
||||
; Packet Mode = Normal
|
||||
; PiggyBacking = Disable
|
||||
; Manchester = Disable
|
||||
; Manchester Type = NA
|
||||
; Whitening = Disable
|
||||
; Whiten Type = NA
|
||||
; Whiten Seed Type = NA
|
||||
; Whiten Seed = NA
|
||||
; FEC = Disable
|
||||
; FEC Type = NA
|
||||
; FEC Padding Code = NA
|
||||
; crc err clear fifo = Not Clear
|
||||
; Tx Packet Gap = 32 symbol(s)
|
||||
; Tx Packet Number = 1 packet(s)
|
||||
; Tx Prefix Type = 0
|
||||
; Packet Type = Fixed Length
|
||||
; Address-Length Position = NA
|
||||
; Length Size = 1-byte
|
||||
; Payload Bit Order = Start from msb
|
||||
; Address Field = Disable
|
||||
; Preamble Rx Size = 2
|
||||
; Preamble Tx Size = 8
|
||||
; Preamble Value = 170
|
||||
; Preamble Unit = 8-bit
|
||||
; Sync Size = 3-byte
|
||||
; Sync Format = S2LP
|
||||
; Sync Value = 3003605
|
||||
; Sync Manchester = Disable
|
||||
; Sync Value Selection = Sync Value
|
||||
; Sync FEC Value = 3003605
|
||||
; Sync Tolerance = None
|
||||
; Address Detect Mode = None
|
||||
; Address Split Mode = NA
|
||||
; Address Size = NA
|
||||
; Address Err Mask = NA
|
||||
; Address Free = NA
|
||||
; Dest Addr Value = NA
|
||||
; Src Addr Value = NA
|
||||
; Dest Addr Bit Mask = NA
|
||||
; Src Addr Bit Mask = NA
|
||||
; Sequence Num = None
|
||||
; Sequence Num Match = off
|
||||
; Sequence Num Mode = NA
|
||||
; Sequence Num Value = NA
|
||||
; FCS2 = None
|
||||
; FCS2 Value = NA
|
||||
; Payload Length = 32
|
||||
; CRC Options = None
|
||||
; CRC Swap = NA
|
||||
; CRC Seed = NA
|
||||
; CRC Bit Invert = NA
|
||||
; CRC Range = NA
|
||||
; CRC Polynomial = NA
|
||||
; CRC Bit Order = NA
|
||||
; CRC Refin = NA
|
||||
; CRC_Refout = NA
|
||||
; Frequency Hopping Mode = Mode 2
|
||||
; Freq Hopping Space = 10 kHz
|
||||
; Hopping Channels = 10
|
||||
; CSMA Mode = Disable
|
||||
; CSMA RSSI Detection = NA
|
||||
; Hopping Persist = Disable
|
||||
; Hopping Intermediate State = TRFS
|
||||
; CSMA Sleep Timer Random = NA
|
||||
; CSMA Rx Time = NA
|
||||
; CSMA Sleep Time M = NA
|
||||
; CSMA Sleep Time R = NA
|
||||
; CSMA Persist = NA
|
||||
; CSMA Detect Times = NA
|
||||
; Tx Auto Hopping = Disable
|
||||
; Rx Auto Hopping = Disable
|
||||
; Auto Acknowledge = off
|
||||
; Auto Resend = off
|
||||
; Maximum Resend Times = 1
|
||||
; RSSI Detect Mode = always
|
||||
; LFOSC LFXO Sel = LFOSC(32kHz)
|
||||
; LF Clock Out = off
|
||||
; Dout Mute = disable
|
||||
; Dout Mute Sel = NA
|
||||
; dout adjust mode = disable
|
||||
; Dout Adjust Percentage = NA
|
||||
; LBD Threshold = 2.4 v
|
||||
; Antenna Diversity = off
|
||||
; Antenna Switch Mode = NA
|
||||
; Collision Detect = off
|
||||
; Collision Step = NA
|
||||
; RSSI Offset dB = NA
|
||||
; RSSI Offset Sel = autosel
|
||||
|
||||
;---------------------------------------
|
||||
; The following are the Register contents
|
||||
;---------------------------------------
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#if (PRODUCT_FREQUENCY == CM2310A_915MHZ)
|
||||
/* [CMT page0] */
|
||||
const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE] = {
|
||||
0x12,
|
||||
0x08,
|
||||
0x00,
|
||||
0xAA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xD5,
|
||||
0xD4,
|
||||
0x2D,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x2D,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x45,
|
||||
0x1F,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x08,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x1F,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xE4,
|
||||
0x20,
|
||||
0x20,
|
||||
0x20,
|
||||
0x01,
|
||||
0x00,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0xE2,
|
||||
0x84,
|
||||
0x30,
|
||||
0x04,
|
||||
0xD0,
|
||||
0xE0,
|
||||
0x80,
|
||||
0x00,
|
||||
0x41,
|
||||
0x00,
|
||||
0x01,
|
||||
0x00,
|
||||
0x02,
|
||||
0x00,
|
||||
0x00,
|
||||
0x03,
|
||||
0x04,
|
||||
};
|
||||
|
||||
/* [CMT page1] */
|
||||
const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE] = {
|
||||
0x10,
|
||||
0x06,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0xCD,
|
||||
0x02,
|
||||
0x20,
|
||||
0x50,
|
||||
0x87,
|
||||
0x31,
|
||||
0x5B,
|
||||
0x08,
|
||||
0x00,
|
||||
0xFF,
|
||||
0x00,
|
||||
0x72,
|
||||
0x00,
|
||||
0x00,
|
||||
0x06,
|
||||
0xB4,
|
||||
0xEA,
|
||||
0x04,
|
||||
0xE0,
|
||||
0x20,
|
||||
0x08,
|
||||
0x05,
|
||||
0x47,
|
||||
0x03,
|
||||
0x00,
|
||||
0x88,
|
||||
0x7F,
|
||||
0x00,
|
||||
0x18,
|
||||
0x00,
|
||||
0x00,
|
||||
0x14,
|
||||
0xE4,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x72,
|
||||
0x00,
|
||||
0x40,
|
||||
0xD6,
|
||||
0x73,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x0F,
|
||||
0x64,
|
||||
0x06,
|
||||
0x02,
|
||||
0xEA,
|
||||
0x04,
|
||||
0x00,
|
||||
0x36,
|
||||
0x01,
|
||||
0x20,
|
||||
0xC8,
|
||||
0x63,
|
||||
0xA1,
|
||||
0x15,
|
||||
0x34,
|
||||
0x58,
|
||||
0x40,
|
||||
0xC3,
|
||||
0x74,
|
||||
0xF0,
|
||||
0x0F,
|
||||
0x01,
|
||||
0x17,
|
||||
0xE6,
|
||||
0x54,
|
||||
0x08,
|
||||
0x39,
|
||||
0xE2,
|
||||
0x14,
|
||||
0x18,
|
||||
0x01,
|
||||
0xB4,
|
||||
0x06,
|
||||
0x0F,
|
||||
0x07,
|
||||
0x4C,
|
||||
0x00,
|
||||
0x00,
|
||||
0xF6,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x10,
|
||||
0x81,
|
||||
0x00,
|
||||
0x00,
|
||||
0x47,
|
||||
0x12,
|
||||
0x25,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
|
||||
#endif
|
||||
115
MBL/source_ns/drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/ebyte_e48x.c
Executable file
115
MBL/source_ns/drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/ebyte_e48x.c
Executable file
@ -0,0 +1,115 @@
|
||||
#include "ebyte_e48x.h"
|
||||
#include "ebyte_callback.h"
|
||||
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>ʶ<EFBFBD><CAB6>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
#define EBYTE_E48_NAME_TYPE 0x00000048
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>ʶ<EFBFBD><CAB6>ģ<EFBFBD><C4A3>Ƶ<EFBFBD><C6B5> */
|
||||
#if defined(EBYTE_E48_433M20S)
|
||||
|
||||
#define EBYTE_E48_FREQUENCY_TYPE 0x00000433
|
||||
|
||||
#elif defined(EBYTE_E48_900M20S)
|
||||
|
||||
#define EBYTE_E48_FREQUENCY_TYPE 0x00000900
|
||||
|
||||
#endif
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD>ʶ<EFBFBD><CAB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>汾<EFBFBD><E6B1BE> */
|
||||
#define EBYTE_E48_PROGRAM_TYPE 0x10
|
||||
|
||||
#include "board.h"
|
||||
|
||||
uint8_t rf_rxbuffer[200];
|
||||
uint8_t rf_rxsize;
|
||||
uint8_t radio_rece_data_flag;
|
||||
|
||||
extern uint32_t g_chip_id;
|
||||
|
||||
void Ebyte_E48x_Init( void )
|
||||
{
|
||||
/* Step1 */
|
||||
vRadioPowerUp(); // Release RST(GPIO5)
|
||||
vRadioSetAntSwitch(FALSE, FALSE); // Disable GPIO0 & GPIO1 as antenna switch control
|
||||
vRadioSpiModeSel(FALSE); // SPI 4-Wire mode
|
||||
|
||||
/* Step2 */
|
||||
g_chip_id = lRadioChipVersion();
|
||||
if(0x00231000 != (g_chip_id & 0x00FFFF00)) {
|
||||
EBYTE_LOG("[%s|%u] Error, dismatch Chip-ID[%#x](!=0x231000).\r\n", __FUNCTION__, __LINE__, g_chip_id);
|
||||
return;
|
||||
}
|
||||
EBYTE_LOG("[%s|%u] Info, Link Device:E48-XXXM20S.\r\n", __FUNCTION__, __LINE__);
|
||||
|
||||
/* Step3 */
|
||||
if (bRadioGetState() == CMT2310A_STATE_IS_READY) {
|
||||
EBYTE_LOG("[%s|%u] Infor, CMT2310 already in State[READY], so skip initialization.\r\n", __FUNCTION__, __LINE__);
|
||||
return;
|
||||
}
|
||||
EBYTE_LOG("[%s|%u] Info, goto initialize E48-XXXM20S.\r\n", __FUNCTION__, __LINE__);
|
||||
|
||||
/* Step4 */
|
||||
vRadioInit();
|
||||
}
|
||||
|
||||
void Ebyte_E48x_SendPayload( uint8_t *payload, uint8_t size, uint32_t timeout )
|
||||
{
|
||||
vRadioTransmit( payload, size );
|
||||
}
|
||||
|
||||
|
||||
void Ebyte_E48x_SetRx( uint32_t timeout )
|
||||
{
|
||||
vRadioReceive();
|
||||
}
|
||||
|
||||
void Ebyte_E48x_SetStandby( uint8_t cmd )
|
||||
{
|
||||
vRadioStandby();
|
||||
}
|
||||
|
||||
void Ebyte_E48x_SetSleep( uint8_t cmd )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
void Ebyte_E48x_IntOrPollTask( void )
|
||||
{
|
||||
radio_rece_data_flag = gpio_input_bit_get( BSP_GPIO_PORT_E48_GP4 , BSP_GPIO_PIN_E48_GP4);
|
||||
/* <20>н<EFBFBD><D0BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
if( radio_rece_data_flag != RESET ) {
|
||||
vRadioGetPacket(rf_rxbuffer, &rf_rxsize);
|
||||
Ebyte_Port_ReceiveCallback(0x0002,rf_rxbuffer,rf_rxsize);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Ebyte_E48x_InterruptTrigger( void )
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ȡģ<C8A1><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
*
|
||||
* @return 32λ<32>ı<EFBFBD><C4B1><EFBFBD>
|
||||
* @note <20><>16λ<36><CEBB><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>0x0220 <20><><EFBFBD><EFBFBD>E22ģ<32><C4A3>
|
||||
* <20><>16λ<36><CEBB><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>0x0400 <20><><EFBFBD><EFBFBD>400Ƶ<30><C6B5>
|
||||
*/
|
||||
uint32_t Ebyte_E48x_GetName(void)
|
||||
{
|
||||
return ( ( (uint32_t)EBYTE_E48_NAME_TYPE << 16 ) | (uint32_t)EBYTE_E48_FREQUENCY_TYPE);
|
||||
}
|
||||
|
||||
/* !
|
||||
* @brief <20><>ȡģ<C8A1><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>汾
|
||||
*
|
||||
* @return 8λ<38>ı<EFBFBD><C4B1><EFBFBD>
|
||||
* @note <20><><EFBFBD><EFBFBD>0x10 <20><><EFBFBD><EFBFBD>V1.0
|
||||
*/
|
||||
uint8_t Ebyte_E48x_GetDriverVersion(void)
|
||||
{
|
||||
return EBYTE_E48_PROGRAM_TYPE;
|
||||
}
|
||||
@ -0,0 +1,24 @@
|
||||
#ifndef _EBYTE_E48X_H_
|
||||
#define _EBYTE_E48X_H_
|
||||
|
||||
|
||||
#include "radio.h"
|
||||
#include "radio_hal.h"
|
||||
#include "radio_mac.h"
|
||||
#include "radio_phy.h"
|
||||
#include "radio_spi.h"
|
||||
|
||||
#include "ebyte_conf.h"
|
||||
|
||||
void Ebyte_E48x_Init( void );
|
||||
void Ebyte_E48x_SendPayload( uint8_t *payload, uint8_t size, uint32_t timeout );
|
||||
void Ebyte_E48x_SetRx( uint32_t timeout );
|
||||
void Ebyte_E48x_SetSleep( uint8_t cmd );
|
||||
void Ebyte_E48x_SetStandby( uint8_t cmd );
|
||||
void Ebyte_E48x_IntOrPollTask( void );
|
||||
void Ebyte_E48x_InterruptTrigger( void );
|
||||
uint32_t Ebyte_E48x_GetName(void);
|
||||
uint8_t Ebyte_E48x_GetDriverVersion(void);
|
||||
|
||||
|
||||
#endif
|
||||
423
MBL/source_ns/drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio.c
Executable file
423
MBL/source_ns/drivers/CMT2310/3_Ebyte_WirelessModule_Drivers/E48xMx/radio.c
Executable file
@ -0,0 +1,423 @@
|
||||
#include "radio.h"
|
||||
#include "board.h"
|
||||
CMT2310A_CFG g_radio; //
|
||||
|
||||
uint8_t g_reg_read_buf[128];
|
||||
uint32_t g_chip_id = 0;
|
||||
|
||||
//<2F><><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>270~276<37>У<EFBFBD><D0A3><EFBFBD>Ӧ<EFBFBD><D3A6>7<EFBFBD><37><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>üĴ<C3BC><C4B4><EFBFBD>
|
||||
const uint8_t cmt2310a_power[55][7] = {
|
||||
{0x20,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-0.h */
|
||||
{0x25,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-1.h */
|
||||
{0x68,0x1B,0x00,0x3A,0x00,0x00,0x05 }, /* cmt2310a_params13-10.h */
|
||||
{0x36,0x2D,0x00,0x22,0x00,0x00,0x07 }, /* cmt2310a_params13-11.h */
|
||||
{0x40,0x2D,0x00,0x22,0x00,0x00,0x08 }, /* cmt2310a_params13-12.h */
|
||||
{0x4D,0x2D,0x00,0x22,0x00,0x00,0x0C }, /* cmt2310a_params13-13.h */
|
||||
{0x2A,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-2.h */
|
||||
{0x30,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-3.h */
|
||||
{0x35,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-4.h */
|
||||
{0x3A,0x1B,0x00,0x3A,0x00,0x00,0x02 }, /* cmt2310a_params13-5.h */
|
||||
{0x41,0x1B,0x00,0x3A,0x00,0x00,0x02 }, /* cmt2310a_params13-6.h */
|
||||
{0x48,0x1B,0x00,0x3A,0x00,0x00,0x02 }, /* cmt2310a_params13-7.h */
|
||||
{0x50,0x1B,0x00,0x3A,0x00,0x00,0x03 }, /* cmt2310a_params13-8.h */
|
||||
{0x5B,0x1B,0x00,0x3A,0x00,0x00,0x04 }, /* cmt2310a_params13-9.h */
|
||||
{0x1C,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-N1.h */
|
||||
{0x19,0x12,0x00,0x57,0x00,0x00,0x01 }, /* cmt2310a_params13-N10.h */
|
||||
{0x19,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-N2.h */
|
||||
{0x16,0x1B,0x00,0x3A,0x00,0x00,0x01 }, /* cmt2310a_params13-N3.h */
|
||||
{0x35,0x12,0x00,0x57,0x00,0x00,0x02 }, /* cmt2310a_params13-N4.h */
|
||||
{0x2F,0x12,0x00,0x57,0x00,0x00,0x02 }, /* cmt2310a_params13-N5.h */
|
||||
{0x29,0x12,0x00,0x57,0x00,0x00,0x02 }, /* cmt2310a_params13-N6.h */
|
||||
{0x25,0x12,0x00,0x57,0x00,0x00,0x01 }, /* cmt2310a_params13-N7.h */
|
||||
{0x20,0x12,0x00,0x57,0x00,0x00,0x01 }, /* cmt2310a_params13-N8.h */
|
||||
{0x1C,0x12,0x00,0x57,0x00,0x00,0x01 }, /* cmt2310a_params13-N9.h */
|
||||
{0x2A,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-0.h */
|
||||
{0x2F,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-1.h */
|
||||
{0x39,0x3F,0x00,0x18,0x00,0x00,0x06 }, /* cmt2310a_params20-10.h */
|
||||
{0x40,0x3F,0x00,0x18,0x00,0x00,0x07 }, /* cmt2310a_params20-11.h */
|
||||
{0x49,0x3F,0x00,0x18,0x00,0x00,0x08 }, /* cmt2310a_params20-12.h */
|
||||
{0x53,0x3F,0x00,0x18,0x00,0x00,0x0A }, /* cmt2310a_params20-13.h */
|
||||
{0x5F,0x3F,0x00,0x18,0x00,0x00,0x0C }, /* cmt2310a_params20-14.h */
|
||||
{0x70,0x3F,0x00,0x18,0x00,0x00,0x0F }, /* cmt2310a_params20-15.h */
|
||||
{0x85,0x3F,0x00,0x18,0x00,0x00,0x14 }, /* cmt2310a_params20-16.h */
|
||||
{0x50,0x7F,0x00,0x18,0x00,0x00,0x12 }, /* cmt2310a_params20-17.h */
|
||||
{0x69,0x7F,0x00,0x18,0x00,0x00,0x18 }, /* cmt2310a_params20-18.h */
|
||||
{0x80,0x7F,0x00,0x18,0x00,0x00,0x1C }, /* cmt2310a_params20-19.h */
|
||||
{0x35,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-2.h */
|
||||
{0xA0,0x7F,0x00,0x18,0x00,0x00,0x1F }, /* cmt2310a_params20-20.h */
|
||||
{0x3C,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-3.h */
|
||||
{0x42,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-4.h */
|
||||
{0x49,0x1F,0x00,0x32,0x00,0x00,0x02 }, /* cmt2310a_params20-5.h */
|
||||
{0x54,0x1F,0x00,0x32,0x00,0x00,0x02 }, /* cmt2310a_params20-6.h */
|
||||
{0x5F,0x1F,0x00,0x32,0x00,0x00,0x03 }, /* cmt2310a_params20-7.h */
|
||||
{0x6B,0x1F,0x00,0x32,0x00,0x00,0x03 }, /* cmt2310a_params20-8.h */
|
||||
{0x33,0x3F,0x00,0x18,0x00,0x00,0x05 }, /* cmt2310a_params20-9.h */
|
||||
{0x25,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-N1.h */
|
||||
{0x1A,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N10.h */
|
||||
{0x21,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-N2.h */
|
||||
{0x1D,0x1F,0x00,0x32,0x00,0x00,0x01 }, /* cmt2310a_params20-N3.h */
|
||||
{0x36,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N4.h */
|
||||
{0x30,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N5.h */
|
||||
{0x2A,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N6.h */
|
||||
{0x25,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N7.h */
|
||||
{0x21,0x16,0x00,0x47,0x00,0x00,0x01 }, /* cmt2310a_params20-N8.h */
|
||||
{0x1D,0x16,0x00,0x47,0x00,0x00,0x01 } /* cmt2310a_params20-N9.h */
|
||||
};
|
||||
|
||||
/******************************
|
||||
**Name: vRadioInit
|
||||
**Func: Radio config spi & reset
|
||||
**Input: None
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioInit( void )
|
||||
{
|
||||
byte fw_rev;
|
||||
|
||||
/* Step4 */
|
||||
vRadioHardReset();
|
||||
|
||||
/* Step5 */
|
||||
vRadioConfigPageReg( 0, g_cmt2310a_page0, CMT2310A_PAGE0_SIZE ); //config page 0
|
||||
vRadioConfigPageReg( 1, g_cmt2310a_page1, CMT2310A_PAGE1_SIZE ); //config page 1
|
||||
vRadioSetNirq( CMT2310A_nIRQ_TCXO ); //for TCXO need cofig as nIRQ pin at first
|
||||
vRadioTcxoDrvSel( 0 ); //drive power
|
||||
|
||||
fw_rev = (byte)g_chip_id; //dealwith Xtal
|
||||
switch(fw_rev)
|
||||
{
|
||||
case 0xC0:
|
||||
vRadioXoWaitCfg(RADIO_CGU_DIV4);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
/* Step6 */
|
||||
vRadioPowerUpBoot();
|
||||
delay1ms( 10 );
|
||||
|
||||
/* Step7 */
|
||||
bRadioGoStandby();
|
||||
delay1ms( 2 );
|
||||
bRadioApiCommand( 0x02 ); //
|
||||
delay1ms( 10 );
|
||||
|
||||
/* Step8 */
|
||||
bRadioApiCommand( 0x01 ); //IR Calibration, need some times
|
||||
vRadioCapLoad( 2 ); //Xo Cap
|
||||
|
||||
/* Step9, GPIOn and interrupt setting */
|
||||
vRadioSetGpio0( CMT2310A_GPIO0_INT3 );
|
||||
vRadioSetGpio1( CMT2310A_GPIO1_INT2 );
|
||||
vRadioSetGpio2( CMT2310A_GPIO2_DCLK );
|
||||
vRadioSetGpio3( CMT2310A_GPIO3_DOUT );
|
||||
vRadioSetGpio4( CMT2310A_GPIO4_INT1 );
|
||||
vRadioSetGpio5( CMT2310A_GPIO5_nRST );
|
||||
//INT1 = RX_FIFO_WBYTE, INT2 = PKT_DONE
|
||||
vRadioSetInt1Sel( INT_SRC_RX_FIFO_WBYTE );
|
||||
vRadioSetInt2Sel( INT_SRC_PKT_DONE );
|
||||
vRadioSetInt1Polar( FALSE );
|
||||
vRadioSetInt2Polar( FALSE );
|
||||
vRadioSetInt3Polar( FALSE );
|
||||
//interrupt source enable config
|
||||
g_radio.int_src_en._BITS.PKT_DONE_EN = 1;
|
||||
g_radio.int_src_en._BITS.CRC_PASS_EN = 1;
|
||||
g_radio.int_src_en._BITS.ADDR_PASS_EN = 0;
|
||||
g_radio.int_src_en._BITS.SYNC_PASS_EN = 1;
|
||||
g_radio.int_src_en._BITS.PREAM_PASS_EN = 1;
|
||||
g_radio.int_src_en._BITS.TX_DONE_EN = 1;
|
||||
g_radio.int_src_en._BITS.RX_TOUT_EN = 1;
|
||||
g_radio.int_src_en._BITS.LD_STOP_EN = 0;
|
||||
g_radio.int_src_en._BITS.LBD_STOP_EN = 0;
|
||||
g_radio.int_src_en._BITS.LBD_STAT_EN = 0;
|
||||
g_radio.int_src_en._BITS.PKT_ERR_EN = 0;
|
||||
g_radio.int_src_en._BITS.RSSI_COLL_EN = 0;
|
||||
g_radio.int_src_en._BITS.OP_CMD_FAILED_EN = 0;
|
||||
g_radio.int_src_en._BITS.RSSI_PJD_EN = 0;
|
||||
g_radio.int_src_en._BITS.SEQ_MATCH_EN = 0;
|
||||
g_radio.int_src_en._BITS.NACK_RECV_EN = 0;
|
||||
g_radio.int_src_en._BITS.TX_RESEND_DONE_EN = 0;
|
||||
g_radio.int_src_en._BITS.ACK_RECV_FAILED_EN = 0;
|
||||
g_radio.int_src_en._BITS.TX_DC_DONE_EN = 0;
|
||||
g_radio.int_src_en._BITS.CSMA_DONE_EN = 0;
|
||||
g_radio.int_src_en._BITS.CCA_STAT_EN = 0;
|
||||
g_radio.int_src_en._BITS.API_DONE_EN = 0;
|
||||
g_radio.int_src_en._BITS.TX_FIFO_TH_EN = 1;
|
||||
g_radio.int_src_en._BITS.TX_FIFO_NMTY_EN = 1;
|
||||
g_radio.int_src_en._BITS.TX_FIFO_FULL_EN = 1;
|
||||
g_radio.int_src_en._BITS.RX_FIFO_OVF_EN = 1;
|
||||
g_radio.int_src_en._BITS.RX_FIFO_TH_EN = 1;
|
||||
g_radio.int_src_en._BITS.RX_FIFO_NMTY_EN = 1;
|
||||
g_radio.int_src_en._BITS.RX_FIFO_FULL_EN = 1;
|
||||
vRadioInterruptSoucreCfg( &g_radio.int_src_en );
|
||||
//packet preamble config
|
||||
g_radio.preamble_cfg.PREAM_LENG_UNIT = 0; //8-bits mode
|
||||
g_radio.preamble_cfg.PREAM_VALUE = 0xAA; //
|
||||
g_radio.preamble_cfg.RX_PREAM_SIZE = 2; //
|
||||
g_radio.preamble_cfg.TX_PREAM_SIZE = 16;
|
||||
vRadioCfgPreamble( &g_radio.preamble_cfg );
|
||||
//packet syncword config
|
||||
g_radio.sync_cfg.SYN_CFG_u._BITS.SYNC_MAN_EN = 0; //disable syncword manchester coding
|
||||
g_radio.sync_cfg.SYN_CFG_u._BITS.SYNC_SIZE = 2; //enable 3 bytes for syncword
|
||||
g_radio.sync_cfg.SYN_CFG_u._BITS.SYNC_TOL = 0;
|
||||
g_radio.sync_cfg.SYN_CFG_u._BITS.SYNC_MODE_SEL = 0; //normal packet
|
||||
g_radio.sync_cfg.SYNC_VALUE[0] = 0xAA;
|
||||
g_radio.sync_cfg.SYNC_VALUE[1] = 0x2D;
|
||||
g_radio.sync_cfg.SYNC_VALUE[2] = 0xD4;
|
||||
g_radio.sync_cfg.SYNC_VALUE_SEL = 0; //select SYN_VAL
|
||||
vRadioCfgSyncWord( &g_radio.sync_cfg );
|
||||
//packet node address config
|
||||
g_radio.addr_cfg.ADDR_CFG_u._BITS.ADDR_DET_MODE = 0; //disable Node Address
|
||||
vRadioCfgNodeAddr( &g_radio.addr_cfg );
|
||||
//packet crc config
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_EN = 1; //enable crc
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_BIT_ORDER = 0;
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_REFIN = 0;
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_RANGE = 0;
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_BIT_INV = 0;
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_BYTE_SWAP = 0;
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_REFOUT = 0; //whole payload
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRCERR_CLR_FIFO_EN = 0; //note: need ative FIFO_AUTO_CLR_RX_EN = 1 or call vRadioFifoAutoClearGoRx(1)
|
||||
g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_SIZE = 1; //crc-16 mode
|
||||
g_radio.crc_cfg.CRC_POLY_u.u32_POLY = 0x10210000;
|
||||
g_radio.crc_cfg.CRC_SEED_u.u32_SEED = 0x00000000;
|
||||
vRadioCfgCrc( &g_radio.crc_cfg );
|
||||
//packet coding format
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.MANCH_EN = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.MANCH_TYPE = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.WHITEN_EN = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.WHITEN_TYPE = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.WHITEN_SEED_TYP = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.FEC_EN = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.FEC_RSC_NRNSC_SEL = 0;
|
||||
g_radio.coding_format_cfg.CODING_FORMAT_CFG_u._BITS.FEC_TICC = 0;
|
||||
g_radio.coding_format_cfg.WHITEN_SEED = 0x01FF;
|
||||
g_radio.coding_format_cfg.FEC_PAD_CODE = 0;
|
||||
vRadioCfgCodeFormat( &g_radio.coding_format_cfg );
|
||||
//packet frame format
|
||||
g_radio.frame_cfg.DATA_MODE = 2; //0=direct mode, 2=packet mode
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.PKT_TYPE = 1; //0=fixd-length packet mode 1=<3D>ɱ䳤
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.PAYLOAD_BIT_ORDER = 0; //msb first
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.ADDR_LEN_CONF = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.PAGGYBACKING_EN = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.LENGTH_SIZE = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG1_u._BITS.INTERLEAVE_EN = 0; //note: when FEC enable, INTERLEAVE_EN should be set 1
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.TX_PREFIX_TYPE = TX_PREFIX_SEL_PREAMBLE; //transmit preamble
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.SEQNUM_EN = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.SEQNUM_AUTO_INC = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.SEQNUM_SIZE = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.SEQNUM_MACH_EN = 0;
|
||||
g_radio.frame_cfg.FRAME_CFG2_u._BITS.FCS2_EN = 0;
|
||||
g_radio.frame_cfg.TX_PKT_NUM = 0;
|
||||
g_radio.frame_cfg.TX_PKT_GAP = 0;
|
||||
g_radio.frame_cfg.FCS2_TX_IN = 0;
|
||||
g_radio.frame_cfg.PAYLOAD_LENGTH = UHF_LEN;
|
||||
vRadioCfgFrameFormat( &g_radio.frame_cfg );
|
||||
//Run Mode Config
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG1_u._BITS.TX_DC_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG1_u._BITS.TX_ACK_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG1_u._BITS.TX_DC_PERSIST_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG1_u._BITS.TX_AUTO_HOP_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG1_u._BITS.TX_EXIT_STATE = EXIT_TO_READY;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.RX_DC_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.RX_AUTO_HOP_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.RX_ACK_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.RX_EXIT_STATE = EXIT_TO_READY;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG2_u._BITS.CSMA_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG3_u._BITS.PKT_DONE_EXIT_EN = 0; //depend on RX_EXIT_STATE
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG3_u._BITS.RX_HOP_SLP_MODE = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG3_u._BITS.SLP_MODE = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG4_u._BITS.LFCLK_OUT_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG4_u._BITS.LFCLK_SEL = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG4_u._BITS.SLEEP_TIMER_EN = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG4_u._BITS.TIMER_RAND_MODE = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG5_u._BITS.CSMA_CCA_MODE = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG5_u._BITS.CSMA_CCA_WIN_SEL = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG5_u._BITS.CSMA_CCA_INT_SEL = 0;
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG5_u._BITS.CSMA_PERSIST_EN = 0;
|
||||
|
||||
g_radio.word_mode_cfg.WORK_MODE_CFG6_u._BITS.FREQ_HOP_MANU_EN = 1;//ʹ<><CAB9><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD>ֶ<EFBFBD><D6B6><EFBFBD>Ƶ<EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9>
|
||||
|
||||
g_radio.word_mode_cfg.FREQ_CHANL_NANU = 92;//<2F>ֶ<EFBFBD><D6B6><EFBFBD>Ƶ<EFBFBD>ŵ<EFBFBD>0~255
|
||||
g_radio.word_mode_cfg.FREQ_DONE_TIMES = 0;
|
||||
g_radio.word_mode_cfg.FREQ_SPACE = 250;//<2F><>Ƶ<EFBFBD>ŵ<EFBFBD><C5B5><EFBFBD><EFBFBD><EFBFBD>0~255 KHz
|
||||
g_radio.word_mode_cfg.FREQ_TIMES = 0;
|
||||
g_radio.word_mode_cfg.SLEEP_TIMER_M = 0;
|
||||
g_radio.word_mode_cfg.SLEEP_TIMER_R = 0;
|
||||
g_radio.word_mode_cfg.RX_TIMER_T1_M = 0; //M*2^(R+1)*5us=M*2^R*10us,
|
||||
g_radio.word_mode_cfg.RX_TIMER_T1_R = 0; //R=7, unit=0.64ms
|
||||
g_radio.word_mode_cfg.RX_TIMER_T2_M = 0;
|
||||
g_radio.word_mode_cfg.RX_TIMER_T2_R = 0;
|
||||
g_radio.word_mode_cfg.RX_TIMER_CSMA_M = 0;
|
||||
g_radio.word_mode_cfg.RX_TIMER_CSMA_R = 0;
|
||||
g_radio.word_mode_cfg.TX_DC_TIMES = 0;
|
||||
g_radio.word_mode_cfg.TX_RS_TIMES = 0;
|
||||
g_radio.word_mode_cfg.CSMA_TIMES = 0;
|
||||
g_radio.word_mode_cfg.SLEEP_TIMER_CSMA_M = 0;
|
||||
g_radio.word_mode_cfg.SLEEP_TIMER_CSMA_R = 0;
|
||||
vRadioCfgWorkMode( &g_radio.word_mode_cfg );
|
||||
//FIFO Init
|
||||
vRadioFifoMerge( FALSE );
|
||||
vRadioSetFifoTH( 30 );
|
||||
vRadioClearRxFifo(); //reset & clear fifo
|
||||
vRadioClearTxFifo();
|
||||
vRadioFifoAutoClearGoRx( TRUE ); //when crc error, need to auto clear fifo, should enable
|
||||
vRadioRssiUpdateSel( CMT2310A_RSSI_UPDATE_ALWAYS );
|
||||
vRadioSetAntSwitch( FALSE, FALSE ); //
|
||||
vRadioDcdcCfg( TRUE ); //dc-dc off
|
||||
}
|
||||
|
||||
void vRadioClearInterrupt( void )
|
||||
{
|
||||
vRadioInterruptSoucreFlag( &g_radio.int_src_flag );
|
||||
g_radio.int_src_clear._BITS.SLEEP_TMO_CLR = g_radio.int_src_flag._BITS.SLEEP_TMO_FLG;
|
||||
g_radio.int_src_clear._BITS.RX_TMO_CLR = g_radio.int_src_flag._BITS.RX_TMO_FLG;
|
||||
g_radio.int_src_clear._BITS.TX_DONE_CLR = g_radio.int_src_flag._BITS.TX_DONE_FLG;
|
||||
g_radio.int_src_clear._BITS.PKT_DONE_CLR = g_radio.int_src_flag._BITS.PKT_DONE_FLG;
|
||||
g_radio.int_src_clear._BITS.CRC_PASS_CLR = g_radio.int_src_flag._BITS.CRC_PASS_FLG;
|
||||
g_radio.int_src_clear._BITS.ADDR_PASS_CLR = g_radio.int_src_flag._BITS.ADDR_PASS_FLG;
|
||||
g_radio.int_src_clear._BITS.SYNC_PASS_CLR = g_radio.int_src_flag._BITS.SYNC_PASS_FLG | g_radio.int_src_flag._BITS.SYNC1_PASS_FLG;
|
||||
g_radio.int_src_clear._BITS.PREAM_PASS_CLR = g_radio.int_src_flag._BITS.PREAM_PASS_FLG;
|
||||
g_radio.int_src_clear._BITS.LBD_STAT_CLR = g_radio.int_src_flag._BITS.LBD_STATUS_FLG;
|
||||
g_radio.int_src_clear._BITS.PKT_ERR_CLR = g_radio.int_src_flag._BITS.PKT_ERR_FLG;
|
||||
g_radio.int_src_clear._BITS.RSSI_COLL_CLR = g_radio.int_src_flag._BITS.RSSI_COLL_FLG;
|
||||
g_radio.int_src_clear._BITS.OP_CMD_FAILED_CLR = g_radio.int_src_flag._BITS.OP_CMD_FAILED_FLG;
|
||||
g_radio.int_src_clear._BITS.ANT_LOCK_CLR = g_radio.int_src_flag._BITS.ANT_LOCK_FLG;
|
||||
g_radio.int_src_clear._BITS.SEQ_MATCH_CLR = g_radio.int_src_flag._BITS.SEQ_MATCH_FLG;
|
||||
g_radio.int_src_clear._BITS.NACK_RECV_CLR = g_radio.int_src_flag._BITS.NACK_RECV_FLG;
|
||||
g_radio.int_src_clear._BITS.TX_RESEND_DONE_CLR = g_radio.int_src_flag._BITS.TX_RESEND_DONE_FLG ;
|
||||
g_radio.int_src_clear._BITS.ACK_RECV_FAILED_CLR = g_radio.int_src_flag._BITS.ACK_RECV_FAILED_FLG;
|
||||
g_radio.int_src_clear._BITS.TX_DC_DONE_CLR = g_radio.int_src_flag._BITS.TX_DC_DONE_FLG;
|
||||
g_radio.int_src_clear._BITS.CSMA_DONE_CLR = g_radio.int_src_flag._BITS.CSMA_DONE_FLG;
|
||||
g_radio.int_src_clear._BITS.CCA_STATUS_CLR = g_radio.int_src_flag._BITS.CCA_STATUS_FLG;
|
||||
g_radio.int_src_clear._BITS.API_DONE_CLR = g_radio.int_src_flag._BITS.API_DONE_FLG;
|
||||
vRadioInterruptSoucreClear( &g_radio.int_src_clear );
|
||||
}
|
||||
|
||||
void vRadioReadAllStatus( void )
|
||||
{
|
||||
bRadioGetState(); //read work status
|
||||
vRadioFifoGetStatus( &g_radio.fifo_status_flag ); //read fifo status
|
||||
vRadioInterruptSoucreFlag( &g_radio.int_src_flag ); //read interrupt flag
|
||||
bRadioReadReg( CMT2310A_CTL_REG_04 ); //get GPIO1/GPIO0 selection
|
||||
bRadioReadReg( CMT2310A_CTL_REG_05 ); //get GPIO3/GPIO2 selection
|
||||
bRadioReadReg( CMT2310A_CTL_REG_06 ); //get GPIO5/GPIO4 selection
|
||||
bRadioReadReg( CMT2310A_CTL_REG_16 ); //get INT1 selection
|
||||
bRadioReadReg( CMT2310A_CTL_REG_17 ); //get INT2 selection
|
||||
}
|
||||
|
||||
void vRadioCmpReg( byte const wr_ptr[], byte rd_ptr[], byte cmp_ptr[], byte length )
|
||||
{
|
||||
byte i;
|
||||
for( i = 0; i < length; i++ )
|
||||
{
|
||||
if( wr_ptr[i] != rd_ptr[i] )
|
||||
{
|
||||
cmp_ptr[i] = 0xFF;
|
||||
}
|
||||
else
|
||||
{
|
||||
cmp_ptr[i] = 0x00;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void vRadioGoTxInit( void )
|
||||
{
|
||||
}
|
||||
|
||||
void vRadioGoRxInit( void )
|
||||
{
|
||||
}
|
||||
|
||||
void vRadioReceive(void)
|
||||
{
|
||||
g_radio.frame_cfg.PAYLOAD_LENGTH = UHF_LEN;
|
||||
vRadioSetPayloadLength(&g_radio.frame_cfg);
|
||||
vRadioSetInt1Sel(CMT2310A_INT_PKT_DONE);
|
||||
vRadioSetInt2Sel(CMT2310A_INT_RX_FIFO_WBYTE);
|
||||
bRadioGoRx();
|
||||
}
|
||||
|
||||
void vRadioTransmit(uint8_t* buffer, uint8_t length )
|
||||
{
|
||||
vRadioSetInt1Sel( CMT2310A_INT_TX_DONE );
|
||||
vRadioSetInt2Sel( CMT2310A_INT_TX_FIFO_NMTY );
|
||||
g_radio.frame_cfg.PAYLOAD_LENGTH = length;
|
||||
vRadioSetPayloadLength( &g_radio.frame_cfg );
|
||||
vRadioWriteFifo( buffer, length );
|
||||
// vRadioReadTxFifo(radio_rx_buf, 20);
|
||||
// vRadioManualResetTxFifoPointer();
|
||||
bRadioGoTx();
|
||||
|
||||
while ( gpio_input_bit_get( BSP_GPIO_PORT_E48_GP4 , BSP_GPIO_PIN_E48_GP4) == RESET);
|
||||
bRadioGoStandby();
|
||||
vRadioClearTxFifo();
|
||||
vRadioClearInterrupt();
|
||||
|
||||
vRadioReceive();
|
||||
}
|
||||
|
||||
void vRadioStandby( void )
|
||||
{
|
||||
bRadioGoStandby();
|
||||
vRadioClearTxFifo();
|
||||
vRadioClearRxFifo();
|
||||
vRadioClearInterrupt();
|
||||
}
|
||||
|
||||
uint8_t vRadioGetPacket(uint8_t *buffer,uint8_t *length)
|
||||
{
|
||||
uint8_t rx_length;
|
||||
|
||||
if( g_radio.crc_cfg.CRC_CFG_u._BITS.CRC_EN == 1 )
|
||||
{
|
||||
vRadioInterruptSoucreFlag( &g_radio.int_src_flag );
|
||||
if( g_radio.int_src_flag._BITS.CRC_PASS_FLG == 1 )
|
||||
{
|
||||
// g_rx_count++;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// g_rx_count++;
|
||||
}
|
||||
|
||||
vRadioReadFifo(&rx_length, 1);
|
||||
|
||||
vRadioReadFifo(buffer, rx_length);
|
||||
*length = rx_length;
|
||||
vRadioClearRxFifo();
|
||||
vRadioClearInterrupt();
|
||||
bRadioGoRx();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void vRadioCheckLink(void)
|
||||
{
|
||||
uint8_t i = 0;
|
||||
|
||||
while(1) {
|
||||
vRadioSoftReset();
|
||||
vRadioPowerUpBoot();
|
||||
delay1ms(10);
|
||||
g_chip_id = lRadioChipVersion();
|
||||
if(0x00231000==(g_chip_id&0x00FFFF00)) break;
|
||||
|
||||
EBYTE_LOG( "Link Error.....\r\n" );
|
||||
delay1ms(500);
|
||||
i++;
|
||||
if(i >= 20) while(1);
|
||||
}
|
||||
EBYTE_LOG( "Link Device:E48-XXXM20S....\r\n" );
|
||||
}
|
||||
|
||||
void vRadioSetFreqChannel(uint8_t channel)
|
||||
{
|
||||
bRadioGoStandby();
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_03, channel);
|
||||
}
|
||||
@ -1,40 +1,41 @@
|
||||
|
||||
|
||||
#ifndef __RADIO_H
|
||||
|
||||
#define __RADIO_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "radio_phy.h"
|
||||
#include "radio_mac.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
#define UHF_LEN 30 //
|
||||
|
||||
|
||||
extern const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE];
|
||||
extern const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE];
|
||||
extern const uint8_t g_cmt2310a_page2[CMT2310A_PAGE2_SIZE];
|
||||
|
||||
extern void vRadioInit( void );
|
||||
extern void vRadioClearInterrupt( void );
|
||||
extern void vRadioReadAllStatus( void );
|
||||
extern void vRadioCmpReg( byte const wr_ptr[], byte rd_ptr[], byte cmp_ptr[], byte length );
|
||||
extern void vRadioGoTxInit( void );
|
||||
extern void vRadioGoRxInit( void );
|
||||
|
||||
extern void vRadioTransmit(uint8_t* buffer, uint8_t length );
|
||||
extern void vRadioReceive(void);
|
||||
extern uint8_t vRadioGetPacket(uint8_t *buffer,uint8_t *length);
|
||||
|
||||
|
||||
extern void vRadioCheckLink(void);
|
||||
|
||||
extern void vRadioSetFreqChannel(uint8_t channel);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef __RADIO_H
|
||||
|
||||
#define __RADIO_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "radio_phy.h"
|
||||
#include "radio_mac.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
#define UHF_LEN 30 //
|
||||
|
||||
|
||||
extern const uint8_t g_cmt2310a_page0[CMT2310A_PAGE0_SIZE];
|
||||
extern const uint8_t g_cmt2310a_page1[CMT2310A_PAGE1_SIZE];
|
||||
extern const uint8_t g_cmt2310a_page2[CMT2310A_PAGE2_SIZE];
|
||||
|
||||
extern void vRadioInit( void );
|
||||
extern void vRadioClearInterrupt( void );
|
||||
extern void vRadioReadAllStatus( void );
|
||||
extern void vRadioCmpReg( byte const wr_ptr[], byte rd_ptr[], byte cmp_ptr[], byte length );
|
||||
extern void vRadioGoTxInit( void );
|
||||
extern void vRadioGoRxInit( void );
|
||||
|
||||
extern void vRadioTransmit(uint8_t* buffer, uint8_t length );
|
||||
extern void vRadioReceive(void);
|
||||
extern void vRadioStandby(void);
|
||||
|
||||
extern uint8_t vRadioGetPacket(uint8_t *buffer,uint8_t *length);
|
||||
|
||||
extern void vRadioCheckLink(void);
|
||||
|
||||
extern void vRadioSetFreqChannel(uint8_t channel);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,89 @@
|
||||
|
||||
|
||||
#ifndef __RADIO_HAL_H
|
||||
|
||||
#define __RADIO_HAL_H
|
||||
|
||||
//#include "stm8l15x.h"
|
||||
#include "gd32w51x.h"
|
||||
#include "ebyte_port.h"
|
||||
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>ֻ<EFBFBD>ܴ<EFBFBD><DCB4><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><D1A1>
|
||||
#define CM2310A_410MHZ 0
|
||||
#define CM2310A_433MHZ 1
|
||||
#define CM2310A_868MHZ 2
|
||||
#define CM2310A_915MHZ 3
|
||||
|
||||
#define PRODUCT_FREQUENCY CM2310A_410MHZ//ѡ<><D1A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5>
|
||||
|
||||
#include "radio_spi.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
#define RADIO_CGU_DIV1 0
|
||||
#define RADIO_CGU_DIV4 1
|
||||
#define RADIO_CGU_DIV8 2
|
||||
|
||||
#ifndef TRUE
|
||||
/** Value is true (boolean_t type) */
|
||||
#define TRUE ((boolean_t) 1u)
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
/** Value is false (boolean_t type) */
|
||||
#define FALSE ((boolean_t) 0u)
|
||||
#endif
|
||||
typedef uint8_t boolean_t;
|
||||
typedef uint8_t byte;
|
||||
|
||||
extern void vRadioGpioInit( void );
|
||||
|
||||
extern uint8_t bRadioReadReg( uint8_t addr );
|
||||
extern uint8_t bRadioWriteReg( uint8_t addr, uint8_t reg_dat );
|
||||
extern uint8_t bRadioSetReg( uint8_t addr, uint8_t set_bits, uint8_t mask_bits );
|
||||
|
||||
extern void vRadioLoadRegs( uint8_t sta_adr, uint8_t* ptr_buf, uint8_t length );
|
||||
extern void vRadioStoreRegs( uint8_t sta_adr, uint8_t* ptr_buf, uint8_t length );
|
||||
|
||||
extern void vRadioBurstReadRegs( uint8_t* ptr_buf, uint8_t length );
|
||||
extern void vRadioBurstWriteRegs( uint8_t* ptr_buf, uint8_t length );
|
||||
|
||||
extern void vRadioReadFifo( uint8_t* ptr_fifo, uint8_t length );
|
||||
extern void vRadioWriteFifo( uint8_t* ptr_fifo, uint8_t length );
|
||||
extern void vRadioReadTxFifo( uint8_t* ptr_fifo, uint8_t length );
|
||||
|
||||
|
||||
extern void vRadioSpiModeSel( boolean_t spi_mod );
|
||||
extern void vRadioSetTxDin( boolean_t cfg_din, uint8_t pin_sel );
|
||||
extern void vRadioSetDigClkOut( boolean_t cfg_out );
|
||||
extern void vRadioSetLfxoPad( boolean_t cfg_lfxo );
|
||||
extern void vRadioSetGpio0( uint8_t gpio0_sel );
|
||||
extern void vRadioSetGpio1( uint8_t gpio1_sel );
|
||||
extern void vRadioSetGpio2( uint8_t gpio2_sel );
|
||||
extern void vRadioSetGpio3( uint8_t gpio3_sel );
|
||||
extern void vRadioSetGpio4( uint8_t gpio4_sel );
|
||||
extern void vRadioSetGpio5( uint8_t gpio5_sel );
|
||||
extern void vRadioSetNirq( uint8_t nirq_sel );
|
||||
extern void vRadioTcxoDrvSel( uint8_t drv_sel );
|
||||
|
||||
extern void vRadioRegPageSel( uint8_t page_sel );
|
||||
extern void vRadioPowerUp( void );
|
||||
extern void vRadioPowerUpBoot( void );
|
||||
extern void vRadioHardReset( void );
|
||||
extern void vRadioSoftReset( void );
|
||||
extern void vRadioSetPaOutputMode( boolean_t cfg_en );
|
||||
extern void vRadioSetTxDataInverse( boolean_t cfg_en );
|
||||
extern void vRadioSetAntSwitch( boolean_t cfg_en, boolean_t cfg_polar );
|
||||
|
||||
extern void vRadioDcdcCfg( boolean_t on_off );
|
||||
extern void vRadioCapLoad( uint8_t cap_value );
|
||||
extern void vRadioLfoscCfg( boolean_t on_off );
|
||||
extern void vRadioXoWaitCfg( uint8_t div_sel );
|
||||
|
||||
extern void delay1ms(uint16_t cnt);
|
||||
extern void delay10us(uint32_t cnt);
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
@ -1,482 +1,482 @@
|
||||
#include "radio_mac.h"
|
||||
|
||||
/******************************
|
||||
**Name: bRadioGetCurrentChannl
|
||||
**Func: Radio get current active channl number
|
||||
**Input: None
|
||||
*Output: channl number
|
||||
********************************/
|
||||
uint8_t bRadioGetCurrentChannl( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_FREQ_CHANL_ACT_REG ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetTxSeqNumber
|
||||
**Func: Radio set transmit sequence number
|
||||
**Input: transmit init sequence number
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetTxSeqNumberInitValue( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_L_REG, ( uint8_t )( ( *frm_cfg ).SEQNUM_TX_IN ) );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_H_REG, ( uint8_t )( ( ( *frm_cfg ).SEQNUM_TX_IN ) >> 8 ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: wRadioGetTxSeqNumber
|
||||
**Func: Radio get current transmit sequence number
|
||||
**Input: None
|
||||
*Output: current transmit sequence number
|
||||
********************************/
|
||||
uint16_t wRadioGetTxSeqNumberCurrent( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t seq_num = 0;
|
||||
seq_num = bRadioReadReg( CMT2310A_SEQNUM_TX_OUT_H_REG );
|
||||
seq_num <<= 8;
|
||||
seq_num |= bRadioReadReg( CMT2310A_SEQNUM_TX_OUT_L_REG );
|
||||
( *frm_cfg ).SEQNUM_TX_CURRENT_OUT = seq_num;
|
||||
return( ( *frm_cfg ).SEQNUM_TX_CURRENT_OUT = seq_num );
|
||||
}
|
||||
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetTxFCS2
|
||||
**Func: Radio set transmit packet FCS2 value
|
||||
**Input: transmit FCS2
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetTxFCS2( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( *frm_cfg ).FCS2_TX_IN );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioGetRxFCS2
|
||||
**Func: Radio get receive packet FCS2 value
|
||||
**Input: None
|
||||
*Output: receive FCS2
|
||||
********************************/
|
||||
uint8_t bRadioGetRxFCS2( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
( *frm_cfg ).FCS2_RX_OUT = bRadioReadReg( CMT2310A_FCS2_RX_OUT_REG );
|
||||
return( ( *frm_cfg ).FCS2_RX_OUT );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetPayloadLength
|
||||
**Func: Radio config payload length
|
||||
**Input: length
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetPayloadLength( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t len;
|
||||
if( ( *frm_cfg ).PAYLOAD_LENGTH != 0 )
|
||||
{
|
||||
len = ( *frm_cfg ).PAYLOAD_LENGTH - 1;
|
||||
bRadioWriteReg( CMT2310A_PAYLOAD_LENGTH_L_REG, ( byte )len );
|
||||
bRadioWriteReg( CMT2310A_PAYLOAD_LENGTH_H_REG, ( byte )( len >> 8 ) );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: wRadioGetPayloadLength
|
||||
**Func: Radio get payload length
|
||||
**Input: None
|
||||
*Output: payload length
|
||||
********************************/
|
||||
uint16_t vRadioGetPayloadLength( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t length = 0;
|
||||
length = bRadioReadReg( CMT2310A_PAYLOAD_LENGTH_H_REG );
|
||||
length <<= 8;
|
||||
length |= bRadioReadReg( CMT2310A_PAYLOAD_LENGTH_L_REG );
|
||||
( *frm_cfg ).PAYLOAD_LENGTH = length + 1;
|
||||
return( length );
|
||||
}
|
||||
|
||||
//######################################################################
|
||||
// Packet config
|
||||
//######################################################################
|
||||
/******************************
|
||||
**Name: vRadioCfgPreamble
|
||||
**Func: Radio config preamble
|
||||
**Input: preamble struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgPreamble( PREAMBLE_CFG* prm_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_40 );
|
||||
if( ( *prm_ptr ).PREAM_LENG_UNIT == 0 )
|
||||
{
|
||||
cfg_tmp &= ( ~CMT2310A_PREAM_LENG_UNIIT );
|
||||
}
|
||||
else
|
||||
{
|
||||
cfg_tmp |= CMT2310A_PREAM_LENG_UNIIT;
|
||||
}
|
||||
cfg_tmp &= ( ~CMT2310A_RX_PREAM_SIZE_MASK );
|
||||
cfg_tmp |= ( ( ( ( *prm_ptr ).RX_PREAM_SIZE ) << 3 )&CMT2310A_RX_PREAM_SIZE_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_40, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_41, ( uint8_t )( ( *prm_ptr ).TX_PREAM_SIZE ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_42, ( uint8_t )( ( *prm_ptr ).TX_PREAM_SIZE >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_43, ( *prm_ptr ).PREAM_VALUE );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgSyncWord
|
||||
**Func: Radio config sync word
|
||||
**Input: sync word struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgSyncWord( SYNC_CFG* sync_ptr )
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t adr;
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_44, ( *sync_ptr ).SYN_CFG_u.SYNC_CFG_REG );
|
||||
for( i = 0, adr = CMT2310A_CTL_REG_52; i < 8; i++, adr-- )
|
||||
{
|
||||
bRadioWriteReg( adr, ( *sync_ptr ).SYNC_VALUE[i] );
|
||||
bRadioWriteReg( ( adr + 8 ), ( *sync_ptr ).SYNC_FEC_VALUE[i] );
|
||||
}
|
||||
if( ( *sync_ptr ).SYNC_VALUE_SEL == 0 )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_64, 0, CMT2310A_SYNC_VALUE_SEL );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_64, CMT2310A_SYNC_VALUE_SEL, CMT2310A_SYNC_VALUE_SEL );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgNodeAddr
|
||||
**Func: Radio config node address
|
||||
**Input: node address struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgNodeAddr( ADDR_CFG* node_addr_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_64 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *node_addr_ptr ).ADDR_CFG_u.ADDR_CFG_REG & 0x7F );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_64, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_SRC_ADDR_L_REG, ( *node_addr_ptr ).SRC_ADDR[0] );
|
||||
bRadioWriteReg( CMT2310A_SRC_ADDR_H_REG, ( *node_addr_ptr ).SRC_ADDR[1] );
|
||||
bRadioWriteReg( CMT2310A_DEST_ADDR_L_REG, ( *node_addr_ptr ).DEST_ADDR[0] );
|
||||
bRadioWriteReg( CMT2310A_DEST_ADDR_H_REG, ( *node_addr_ptr ).DEST_ADDR[1] );
|
||||
bRadioWriteReg( CMT2310A_SRC_BITMASK_L_REG, ( *node_addr_ptr ).SRC_BITMASK[0] );
|
||||
bRadioWriteReg( CMT2310A_SRC_BITMASK_H_REG, ( *node_addr_ptr ).SRC_BITMASK[1] );
|
||||
bRadioWriteReg( CMT2310A_DEST_BITMASK_L_REG, ( *node_addr_ptr ).DEST_BITMASK[0] );
|
||||
bRadioWriteReg( CMT2310A_DEST_BITMASK_H_REG, ( *node_addr_ptr ).DEST_BITMASK[1] );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgCrc
|
||||
**Func: Radio config crc
|
||||
**Input: crc struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgCrc( CRC_CFG* crc_ptr )
|
||||
{
|
||||
uint8_t i, adr;
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_73, ( uint8_t )( ( *crc_ptr ).CRC_CFG_u.CRC_CFG_REG ) );
|
||||
for( i = 0, adr = CMT2310A_CTL_REG_74; i < 4; i++, adr++ )
|
||||
{
|
||||
bRadioWriteReg( adr, ( *crc_ptr ).CRC_SEED_u.u8_SEED[i] );
|
||||
bRadioWriteReg( ( adr + 4 ), ( *crc_ptr ).CRC_POLY_u.u8_POLY[i] );
|
||||
}
|
||||
if( ( *crc_ptr ).CRC_CFG_u._BITS.CRC_REFOUT )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_82, CMT2310A_CRC_REFOUT, CMT2310A_CRC_REFOUT );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_82, 0, CMT2310A_CRC_REFOUT );
|
||||
}
|
||||
if( ( *crc_ptr ).CRC_CFG_u._BITS.CRCERR_CLR_FIFO_EN )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_84, CMT2310A_CRCERR_CLR_FIFO_EN, CMT2310A_CRCERR_CLR_FIFO_EN );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_84, 0, CMT2310A_CRCERR_CLR_FIFO_EN );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgCodeFormat
|
||||
**Func: Radio config code format
|
||||
**Input: code format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgCodeFormat( CODING_FORMAT_CFG* code_format_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_82 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *code_format_ptr ).CODING_FORMAT_CFG_u.CODING_CFG_REG & 0x3F );
|
||||
if( ( *code_format_ptr ).WHITEN_SEED & 0x0100 )
|
||||
{
|
||||
cfg_tmp |= CMT2310A_WHITEN_SEED_B8;
|
||||
}
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_82, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_83, ( uint8_t )( ( *code_format_ptr ).WHITEN_SEED ) );
|
||||
cfg_tmp = ( ( *code_format_ptr ).CODING_FORMAT_CFG_u.CODING_CFG_REG >> 8 );
|
||||
cfg_tmp &= ( ~CMT2310A_FEC_PAD_CODE_H_MASK );
|
||||
cfg_tmp |= ( ( uint8_t )( ( ( *code_format_ptr ).FEC_PAD_CODE ) >> 6 )&CMT2310A_FEC_PAD_CODE_H_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_93, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_94, ( uint8_t )( ( *code_format_ptr ).FEC_PAD_CODE ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgFrameFormat
|
||||
**Func: Radio config frame format
|
||||
**Input: frame format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgFrameFormat( FRAME_CFG* frame_format_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
bRadioSetReg( CMT2310A_CTL_REG_40, ( *frame_format_ptr ).DATA_MODE, CMT2310A_DATA_MODE_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_63, ( *frame_format_ptr ).FRAME_CFG1_u.FRAME_CFG1_REG );
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_84 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *frame_format_ptr ).FRAME_CFG2_u.FRAME_CFG2_REG & 0x7F );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_84, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_NUM_L_REG, ( uint8_t )( *frame_format_ptr ).TX_PKT_NUM );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_NUM_H_REG, ( uint8_t )( ( *frame_format_ptr ).TX_PKT_NUM >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_L_REG, ( uint8_t )( *frame_format_ptr ).SEQNUM_TX_IN );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_H_REG, ( uint8_t )( ( *frame_format_ptr ).SEQNUM_TX_IN >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_GAP_REG, ( *frame_format_ptr ).TX_PKT_GAP );
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( *frame_format_ptr ).FCS2_TX_IN );
|
||||
bRadioWriteReg( CMT2310A_FCS2_RX_OUT_REG, ( *frame_format_ptr ).FCS2_RX_OUT );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgFrameFormat
|
||||
**Func: Radio config frame format
|
||||
**Input: frame format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgWiSunFormat( WI_SUN_CFG* wi_sun_ptr )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_111, ( *wi_sun_ptr ).WI_SUN_REG );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCdrTracingModeCfg
|
||||
**Func: Radio config cdr tracing config
|
||||
**Input: cdr tracing
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCdrTracingModeCfg( CDR_TRACING_CFG* cdr_ptr )
|
||||
{
|
||||
vRadioRegPageSel( 1 );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_00, ( *cdr_ptr ).CDR_CFG0_u.CDR_CFG0_REG );
|
||||
( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG &= 0xF8;
|
||||
( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG |= ( ( uint8_t )( ( *cdr_ptr ).CDR_BR_TH >> 16 ) & 0x07 );
|
||||
bRadioSetReg( CMT2310A_RX_CDR_REG_03, ( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG, 0x1F );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_01, ( uint8_t )( *cdr_ptr ).CDR_BR_TH );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_02, ( uint8_t )( ( *cdr_ptr ).CDR_BR_TH >> 8 ) );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
|
||||
//######################################################################
|
||||
// System control
|
||||
//######################################################################
|
||||
void vRadioCfgWorkMode( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_03, ( *run_mode_ptr ).FREQ_CHANL_NANU );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_12, ( *run_mode_ptr ).FREQ_SPACE );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_13, ( *run_mode_ptr ).FREQ_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_96, ( *run_mode_ptr ).WORK_MODE_CFG1_u.WORK_MODE_CFG1_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_97, ( *run_mode_ptr ).WORK_MODE_CFG2_u.WORK_MODE_CFG2_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_98, ( *run_mode_ptr ).WORK_MODE_CFG3_u.WORK_MODE_CFG3_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_105, ( *run_mode_ptr ).WORK_MODE_CFG4_u.WORK_MODE_CFG4_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_106, ( *run_mode_ptr ).WORK_MODE_CFG5_u.WORK_MODE_CFG5_REG );
|
||||
bRadioSetReg( CMT2310A_CTL_REG_22, ( *run_mode_ptr ).WORK_MODE_CFG6_u.WORK_MODE_CFG6_REG, 0xC0 );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_99, ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_100, ( ( ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).SLEEP_TIMER_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_101, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T1_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_102, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T1_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_T1_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_103, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T2_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_104, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T2_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_T2_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_107, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_CSMA_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_108, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_CSMA_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_CSMA_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_110, ( *run_mode_ptr ).TX_DC_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_113, ( *run_mode_ptr ).TX_RS_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_115, ( *run_mode_ptr ).CSMA_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_118, ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_119, ( ( ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_R & 0x1F ) );
|
||||
}
|
||||
|
||||
void vRadioReadRunModeCfg( void )
|
||||
{
|
||||
bRadioReadReg( CMT2310A_CTL_REG_11 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_12 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_13 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_96 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_97 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_98 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_105 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_106 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_99 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_100 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_101 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_102 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_103 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_104 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_107 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_108 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_110 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_113 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_115 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_118 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_119 );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetTxDutyCycleDoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).TX_DC_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_112 );
|
||||
return( ( *run_mode_ptr ).TX_DC_DONE_TIMES );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetTxResendDoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).TX_RS_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_114 );
|
||||
return( ( *run_mode_ptr ).TX_RS_DONE_TIMES );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetCMSADoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).CSMA_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_116 );
|
||||
return( ( *run_mode_ptr ).CSMA_DONE_TIMES );
|
||||
}
|
||||
|
||||
void vRadioSendWithAck( boolean_t w_ack, FRAME_CFG* frame_format_ptr )
|
||||
{
|
||||
uint8_t tmp;
|
||||
tmp = bRadioReadReg( CMT2310A_FCS2_TX_IN_REG );
|
||||
if( w_ack )
|
||||
{
|
||||
( *frame_format_ptr ).FCS2_TX_IN = tmp | 0x80;
|
||||
}
|
||||
else
|
||||
{
|
||||
( ( *frame_format_ptr ) ).FCS2_TX_IN = tmp & 0x7F;
|
||||
}
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( ( *frame_format_ptr ) ).FCS2_TX_IN );
|
||||
}
|
||||
|
||||
|
||||
|
||||
void vRadioEnableTxAck( boolean_t en_flg, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( en_flg )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG1_u._BITS.TX_ACK_EN = 1; //enable TX_ACK
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG1_u._BITS.TX_ACK_EN = 0; //disable TX_ACK
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 0;
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
|
||||
void vRadioEnableRxAck( boolean_t en_flg, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( en_flg )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_ACK_EN = 1; //enable RX_ACK
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_ACK_EN = 0; //disable RX_ACK
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
|
||||
uint8_t bRadioGetFreqChanl( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_FREQ_CHANL_ACT_REG ) );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetHopDoneTimes( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_CTL_REG_11 ) );
|
||||
}
|
||||
|
||||
|
||||
void vRadioCsmaEnable( boolean_t on_off, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( on_off )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 1;
|
||||
if( ( *run_mode_ptr ).CSMA_TIMES != 0 )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG4_u._BITS.SLEEP_TIMER_EN = 1;
|
||||
}
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.CSMA_EN = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 0;
|
||||
( *run_mode_ptr ).WORK_MODE_CFG4_u._BITS.SLEEP_TIMER_EN = 0;
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.CSMA_EN = 0;
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
void vRadioSetRssiAbsThValue( int8_t rssi )
|
||||
{
|
||||
vRadioRegPageSel( 1 );
|
||||
bRadioWriteReg( CMT2310A_RSSI_ABS_TH_REG, ( uint8_t )rssi );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
void vRadioSetPjdDetWin( uint8_t pjd_win ) //0:4-jump, 1:6-jump, 2:8-jump, 3:10-jump
|
||||
{
|
||||
pjd_win &= 0x03;
|
||||
pjd_win <<= 4;
|
||||
vRadioRegPageSel( 1 ); //CMT2310A_RX_2FSK_REG_01 is in bank1
|
||||
bRadioSetReg( CMT2310A_RX_2FSK_REG_01, pjd_win, 0x30 );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//
|
||||
//void vRadioSetFreq(const byte *ptr)
|
||||
//{
|
||||
// byte i;
|
||||
// byte adr;
|
||||
// vRadioRegPageSel(1);
|
||||
// adr = CMT2310A_TX_FREQ_REG_00;
|
||||
// for(i=0; i<4; i++)
|
||||
// bSpiWriteByte(adr++, ptr[i]);
|
||||
//
|
||||
// adr = CMT2310A_RX_FREQ_REG_01;
|
||||
// for( ; i<8; i++)
|
||||
// bSpiWriteByte(adr++, ptr[i]);
|
||||
// vRadioRegPageSel(0);
|
||||
//}
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
#include "radio_mac.h"
|
||||
|
||||
/******************************
|
||||
**Name: bRadioGetCurrentChannl
|
||||
**Func: Radio get current active channl number
|
||||
**Input: None
|
||||
*Output: channl number
|
||||
********************************/
|
||||
uint8_t bRadioGetCurrentChannl( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_FREQ_CHANL_ACT_REG ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetTxSeqNumber
|
||||
**Func: Radio set transmit sequence number
|
||||
**Input: transmit init sequence number
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetTxSeqNumberInitValue( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_L_REG, ( uint8_t )( ( *frm_cfg ).SEQNUM_TX_IN ) );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_H_REG, ( uint8_t )( ( ( *frm_cfg ).SEQNUM_TX_IN ) >> 8 ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: wRadioGetTxSeqNumber
|
||||
**Func: Radio get current transmit sequence number
|
||||
**Input: None
|
||||
*Output: current transmit sequence number
|
||||
********************************/
|
||||
uint16_t wRadioGetTxSeqNumberCurrent( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t seq_num = 0;
|
||||
seq_num = bRadioReadReg( CMT2310A_SEQNUM_TX_OUT_H_REG );
|
||||
seq_num <<= 8;
|
||||
seq_num |= bRadioReadReg( CMT2310A_SEQNUM_TX_OUT_L_REG );
|
||||
( *frm_cfg ).SEQNUM_TX_CURRENT_OUT = seq_num;
|
||||
return( ( *frm_cfg ).SEQNUM_TX_CURRENT_OUT = seq_num );
|
||||
}
|
||||
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetTxFCS2
|
||||
**Func: Radio set transmit packet FCS2 value
|
||||
**Input: transmit FCS2
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetTxFCS2( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( *frm_cfg ).FCS2_TX_IN );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioGetRxFCS2
|
||||
**Func: Radio get receive packet FCS2 value
|
||||
**Input: None
|
||||
*Output: receive FCS2
|
||||
********************************/
|
||||
uint8_t bRadioGetRxFCS2( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
( *frm_cfg ).FCS2_RX_OUT = bRadioReadReg( CMT2310A_FCS2_RX_OUT_REG );
|
||||
return( ( *frm_cfg ).FCS2_RX_OUT );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioSetPayloadLength
|
||||
**Func: Radio config payload length
|
||||
**Input: length
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioSetPayloadLength( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t len;
|
||||
if( ( *frm_cfg ).PAYLOAD_LENGTH != 0 )
|
||||
{
|
||||
len = ( *frm_cfg ).PAYLOAD_LENGTH - 1;
|
||||
bRadioWriteReg( CMT2310A_PAYLOAD_LENGTH_L_REG, ( byte )len );
|
||||
bRadioWriteReg( CMT2310A_PAYLOAD_LENGTH_H_REG, ( byte )( len >> 8 ) );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: wRadioGetPayloadLength
|
||||
**Func: Radio get payload length
|
||||
**Input: None
|
||||
*Output: payload length
|
||||
********************************/
|
||||
uint16_t vRadioGetPayloadLength( FRAME_CFG* frm_cfg )
|
||||
{
|
||||
uint16_t length = 0;
|
||||
length = bRadioReadReg( CMT2310A_PAYLOAD_LENGTH_H_REG );
|
||||
length <<= 8;
|
||||
length |= bRadioReadReg( CMT2310A_PAYLOAD_LENGTH_L_REG );
|
||||
( *frm_cfg ).PAYLOAD_LENGTH = length + 1;
|
||||
return( length );
|
||||
}
|
||||
|
||||
//######################################################################
|
||||
// Packet config
|
||||
//######################################################################
|
||||
/******************************
|
||||
**Name: vRadioCfgPreamble
|
||||
**Func: Radio config preamble
|
||||
**Input: preamble struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgPreamble( PREAMBLE_CFG* prm_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_40 );
|
||||
if( ( *prm_ptr ).PREAM_LENG_UNIT == 0 )
|
||||
{
|
||||
cfg_tmp &= ( ~CMT2310A_PREAM_LENG_UNIIT );
|
||||
}
|
||||
else
|
||||
{
|
||||
cfg_tmp |= CMT2310A_PREAM_LENG_UNIIT;
|
||||
}
|
||||
cfg_tmp &= ( ~CMT2310A_RX_PREAM_SIZE_MASK );
|
||||
cfg_tmp |= ( ( ( ( *prm_ptr ).RX_PREAM_SIZE ) << 3 )&CMT2310A_RX_PREAM_SIZE_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_40, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_41, ( uint8_t )( ( *prm_ptr ).TX_PREAM_SIZE ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_42, ( uint8_t )( ( *prm_ptr ).TX_PREAM_SIZE >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_43, ( *prm_ptr ).PREAM_VALUE );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgSyncWord
|
||||
**Func: Radio config sync word
|
||||
**Input: sync word struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgSyncWord( SYNC_CFG* sync_ptr )
|
||||
{
|
||||
uint8_t i;
|
||||
uint8_t adr;
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_44, ( *sync_ptr ).SYN_CFG_u.SYNC_CFG_REG );
|
||||
for( i = 0, adr = CMT2310A_CTL_REG_52; i < 8; i++, adr-- )
|
||||
{
|
||||
bRadioWriteReg( adr, ( *sync_ptr ).SYNC_VALUE[i] );
|
||||
bRadioWriteReg( ( adr + 8 ), ( *sync_ptr ).SYNC_FEC_VALUE[i] );
|
||||
}
|
||||
if( ( *sync_ptr ).SYNC_VALUE_SEL == 0 )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_64, 0, CMT2310A_SYNC_VALUE_SEL );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_64, CMT2310A_SYNC_VALUE_SEL, CMT2310A_SYNC_VALUE_SEL );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgNodeAddr
|
||||
**Func: Radio config node address
|
||||
**Input: node address struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgNodeAddr( ADDR_CFG* node_addr_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_64 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *node_addr_ptr ).ADDR_CFG_u.ADDR_CFG_REG & 0x7F );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_64, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_SRC_ADDR_L_REG, ( *node_addr_ptr ).SRC_ADDR[0] );
|
||||
bRadioWriteReg( CMT2310A_SRC_ADDR_H_REG, ( *node_addr_ptr ).SRC_ADDR[1] );
|
||||
bRadioWriteReg( CMT2310A_DEST_ADDR_L_REG, ( *node_addr_ptr ).DEST_ADDR[0] );
|
||||
bRadioWriteReg( CMT2310A_DEST_ADDR_H_REG, ( *node_addr_ptr ).DEST_ADDR[1] );
|
||||
bRadioWriteReg( CMT2310A_SRC_BITMASK_L_REG, ( *node_addr_ptr ).SRC_BITMASK[0] );
|
||||
bRadioWriteReg( CMT2310A_SRC_BITMASK_H_REG, ( *node_addr_ptr ).SRC_BITMASK[1] );
|
||||
bRadioWriteReg( CMT2310A_DEST_BITMASK_L_REG, ( *node_addr_ptr ).DEST_BITMASK[0] );
|
||||
bRadioWriteReg( CMT2310A_DEST_BITMASK_H_REG, ( *node_addr_ptr ).DEST_BITMASK[1] );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgCrc
|
||||
**Func: Radio config crc
|
||||
**Input: crc struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgCrc( CRC_CFG* crc_ptr )
|
||||
{
|
||||
uint8_t i, adr;
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_73, ( uint8_t )( ( *crc_ptr ).CRC_CFG_u.CRC_CFG_REG ) );
|
||||
for( i = 0, adr = CMT2310A_CTL_REG_74; i < 4; i++, adr++ )
|
||||
{
|
||||
bRadioWriteReg( adr, ( *crc_ptr ).CRC_SEED_u.u8_SEED[i] );
|
||||
bRadioWriteReg( ( adr + 4 ), ( *crc_ptr ).CRC_POLY_u.u8_POLY[i] );
|
||||
}
|
||||
if( ( *crc_ptr ).CRC_CFG_u._BITS.CRC_REFOUT )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_82, CMT2310A_CRC_REFOUT, CMT2310A_CRC_REFOUT );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_82, 0, CMT2310A_CRC_REFOUT );
|
||||
}
|
||||
if( ( *crc_ptr ).CRC_CFG_u._BITS.CRCERR_CLR_FIFO_EN )
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_84, CMT2310A_CRCERR_CLR_FIFO_EN, CMT2310A_CRCERR_CLR_FIFO_EN );
|
||||
}
|
||||
else
|
||||
{
|
||||
bRadioSetReg( CMT2310A_CTL_REG_84, 0, CMT2310A_CRCERR_CLR_FIFO_EN );
|
||||
}
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgCodeFormat
|
||||
**Func: Radio config code format
|
||||
**Input: code format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgCodeFormat( CODING_FORMAT_CFG* code_format_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_82 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *code_format_ptr ).CODING_FORMAT_CFG_u.CODING_CFG_REG & 0x3F );
|
||||
if( ( *code_format_ptr ).WHITEN_SEED & 0x0100 )
|
||||
{
|
||||
cfg_tmp |= CMT2310A_WHITEN_SEED_B8;
|
||||
}
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_82, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_83, ( uint8_t )( ( *code_format_ptr ).WHITEN_SEED ) );
|
||||
cfg_tmp = ( ( *code_format_ptr ).CODING_FORMAT_CFG_u.CODING_CFG_REG >> 8 );
|
||||
cfg_tmp &= ( ~CMT2310A_FEC_PAD_CODE_H_MASK );
|
||||
cfg_tmp |= ( ( uint8_t )( ( ( *code_format_ptr ).FEC_PAD_CODE ) >> 6 )&CMT2310A_FEC_PAD_CODE_H_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_93, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_94, ( uint8_t )( ( *code_format_ptr ).FEC_PAD_CODE ) );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgFrameFormat
|
||||
**Func: Radio config frame format
|
||||
**Input: frame format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgFrameFormat( FRAME_CFG* frame_format_ptr )
|
||||
{
|
||||
uint8_t cfg_tmp;
|
||||
bRadioSetReg( CMT2310A_CTL_REG_40, ( *frame_format_ptr ).DATA_MODE, CMT2310A_DATA_MODE_MASK );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_63, ( *frame_format_ptr ).FRAME_CFG1_u.FRAME_CFG1_REG );
|
||||
cfg_tmp = bRadioReadReg( CMT2310A_CTL_REG_84 );
|
||||
cfg_tmp &= 0x80;
|
||||
cfg_tmp |= ( ( *frame_format_ptr ).FRAME_CFG2_u.FRAME_CFG2_REG & 0x7F );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_84, cfg_tmp );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_NUM_L_REG, ( uint8_t )( *frame_format_ptr ).TX_PKT_NUM );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_NUM_H_REG, ( uint8_t )( ( *frame_format_ptr ).TX_PKT_NUM >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_L_REG, ( uint8_t )( *frame_format_ptr ).SEQNUM_TX_IN );
|
||||
bRadioWriteReg( CMT2310A_SEQNUM_TX_IN_H_REG, ( uint8_t )( ( *frame_format_ptr ).SEQNUM_TX_IN >> 8 ) );
|
||||
bRadioWriteReg( CMT2310A_TX_PKT_GAP_REG, ( *frame_format_ptr ).TX_PKT_GAP );
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( *frame_format_ptr ).FCS2_TX_IN );
|
||||
bRadioWriteReg( CMT2310A_FCS2_RX_OUT_REG, ( *frame_format_ptr ).FCS2_RX_OUT );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCfgFrameFormat
|
||||
**Func: Radio config frame format
|
||||
**Input: frame format struct
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCfgWiSunFormat( WI_SUN_CFG* wi_sun_ptr )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_111, ( *wi_sun_ptr ).WI_SUN_REG );
|
||||
}
|
||||
|
||||
/******************************
|
||||
**Name: vRadioCdrTracingModeCfg
|
||||
**Func: Radio config cdr tracing config
|
||||
**Input: cdr tracing
|
||||
*Output: None
|
||||
********************************/
|
||||
void vRadioCdrTracingModeCfg( CDR_TRACING_CFG* cdr_ptr )
|
||||
{
|
||||
vRadioRegPageSel( 1 );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_00, ( *cdr_ptr ).CDR_CFG0_u.CDR_CFG0_REG );
|
||||
( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG &= 0xF8;
|
||||
( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG |= ( ( uint8_t )( ( *cdr_ptr ).CDR_BR_TH >> 16 ) & 0x07 );
|
||||
bRadioSetReg( CMT2310A_RX_CDR_REG_03, ( *cdr_ptr ).CDR_CFG1_u.CDR_CFG1_REG, 0x1F );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_01, ( uint8_t )( *cdr_ptr ).CDR_BR_TH );
|
||||
bRadioWriteReg( CMT2310A_RX_CDR_REG_02, ( uint8_t )( ( *cdr_ptr ).CDR_BR_TH >> 8 ) );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
|
||||
//######################################################################
|
||||
// System control
|
||||
//######################################################################
|
||||
void vRadioCfgWorkMode( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_03, ( *run_mode_ptr ).FREQ_CHANL_NANU );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_12, ( *run_mode_ptr ).FREQ_SPACE );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_13, ( *run_mode_ptr ).FREQ_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_96, ( *run_mode_ptr ).WORK_MODE_CFG1_u.WORK_MODE_CFG1_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_97, ( *run_mode_ptr ).WORK_MODE_CFG2_u.WORK_MODE_CFG2_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_98, ( *run_mode_ptr ).WORK_MODE_CFG3_u.WORK_MODE_CFG3_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_105, ( *run_mode_ptr ).WORK_MODE_CFG4_u.WORK_MODE_CFG4_REG );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_106, ( *run_mode_ptr ).WORK_MODE_CFG5_u.WORK_MODE_CFG5_REG );
|
||||
bRadioSetReg( CMT2310A_CTL_REG_22, ( *run_mode_ptr ).WORK_MODE_CFG6_u.WORK_MODE_CFG6_REG, 0xC0 );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_99, ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_100, ( ( ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).SLEEP_TIMER_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_101, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T1_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_102, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T1_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_T1_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_103, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T2_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_104, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_T2_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_T2_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_107, ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_CSMA_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_108, ( ( ( uint8_t )( ( *run_mode_ptr ).RX_TIMER_CSMA_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).RX_TIMER_CSMA_R & 0x1F ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_110, ( *run_mode_ptr ).TX_DC_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_113, ( *run_mode_ptr ).TX_RS_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_115, ( *run_mode_ptr ).CSMA_TIMES );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_118, ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_M ) );
|
||||
bRadioWriteReg( CMT2310A_CTL_REG_119, ( ( ( uint8_t )( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_M >> 3 ) ) & 0xE0 ) | ( ( *run_mode_ptr ).SLEEP_TIMER_CSMA_R & 0x1F ) );
|
||||
}
|
||||
|
||||
void vRadioReadRunModeCfg( void )
|
||||
{
|
||||
bRadioReadReg( CMT2310A_CTL_REG_11 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_12 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_13 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_96 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_97 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_98 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_105 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_106 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_99 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_100 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_101 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_102 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_103 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_104 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_107 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_108 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_110 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_113 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_115 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_118 );
|
||||
bRadioReadReg( CMT2310A_CTL_REG_119 );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetTxDutyCycleDoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).TX_DC_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_112 );
|
||||
return( ( *run_mode_ptr ).TX_DC_DONE_TIMES );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetTxResendDoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).TX_RS_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_114 );
|
||||
return( ( *run_mode_ptr ).TX_RS_DONE_TIMES );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetCMSADoneTimes( WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
( *run_mode_ptr ).CSMA_DONE_TIMES = bRadioReadReg( CMT2310A_CTL_REG_116 );
|
||||
return( ( *run_mode_ptr ).CSMA_DONE_TIMES );
|
||||
}
|
||||
|
||||
void vRadioSendWithAck( boolean_t w_ack, FRAME_CFG* frame_format_ptr )
|
||||
{
|
||||
uint8_t tmp;
|
||||
tmp = bRadioReadReg( CMT2310A_FCS2_TX_IN_REG );
|
||||
if( w_ack )
|
||||
{
|
||||
( *frame_format_ptr ).FCS2_TX_IN = tmp | 0x80;
|
||||
}
|
||||
else
|
||||
{
|
||||
( ( *frame_format_ptr ) ).FCS2_TX_IN = tmp & 0x7F;
|
||||
}
|
||||
bRadioWriteReg( CMT2310A_FCS2_TX_IN_REG, ( ( *frame_format_ptr ) ).FCS2_TX_IN );
|
||||
}
|
||||
|
||||
|
||||
|
||||
void vRadioEnableTxAck( boolean_t en_flg, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( en_flg )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG1_u._BITS.TX_ACK_EN = 1; //enable TX_ACK
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG1_u._BITS.TX_ACK_EN = 0; //disable TX_ACK
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 0;
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
|
||||
void vRadioEnableRxAck( boolean_t en_flg, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( en_flg )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_ACK_EN = 1; //enable RX_ACK
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_ACK_EN = 0; //disable RX_ACK
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
|
||||
uint8_t bRadioGetFreqChanl( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_FREQ_CHANL_ACT_REG ) );
|
||||
}
|
||||
|
||||
uint8_t bRadioGetHopDoneTimes( void )
|
||||
{
|
||||
return( bRadioReadReg( CMT2310A_CTL_REG_11 ) );
|
||||
}
|
||||
|
||||
|
||||
void vRadioCsmaEnable( boolean_t on_off, WORK_MODE_CFG* run_mode_ptr )
|
||||
{
|
||||
if( on_off )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 1;
|
||||
if( ( *run_mode_ptr ).CSMA_TIMES != 0 )
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG4_u._BITS.SLEEP_TIMER_EN = 1;
|
||||
}
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.CSMA_EN = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.RX_TIMER_EN = 0;
|
||||
( *run_mode_ptr ).WORK_MODE_CFG4_u._BITS.SLEEP_TIMER_EN = 0;
|
||||
( *run_mode_ptr ).WORK_MODE_CFG2_u._BITS.CSMA_EN = 0;
|
||||
}
|
||||
vRadioCfgWorkMode( run_mode_ptr );
|
||||
}
|
||||
|
||||
void vRadioSetRssiAbsThValue( int8_t rssi )
|
||||
{
|
||||
vRadioRegPageSel( 1 );
|
||||
bRadioWriteReg( CMT2310A_RSSI_ABS_TH_REG, ( uint8_t )rssi );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
void vRadioSetPjdDetWin( uint8_t pjd_win ) //0:4-jump, 1:6-jump, 2:8-jump, 3:10-jump
|
||||
{
|
||||
pjd_win &= 0x03;
|
||||
pjd_win <<= 4;
|
||||
vRadioRegPageSel( 1 ); //CMT2310A_RX_2FSK_REG_01 is in bank1
|
||||
bRadioSetReg( CMT2310A_RX_2FSK_REG_01, pjd_win, 0x30 );
|
||||
vRadioRegPageSel( 0 );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//
|
||||
//void vRadioSetFreq(const byte *ptr)
|
||||
//{
|
||||
// byte i;
|
||||
// byte adr;
|
||||
// vRadioRegPageSel(1);
|
||||
// adr = CMT2310A_TX_FREQ_REG_00;
|
||||
// for(i=0; i<4; i++)
|
||||
// bSpiWriteByte(adr++, ptr[i]);
|
||||
//
|
||||
// adr = CMT2310A_RX_FREQ_REG_01;
|
||||
// for( ; i<8; i++)
|
||||
// bSpiWriteByte(adr++, ptr[i]);
|
||||
// vRadioRegPageSel(0);
|
||||
//}
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,49 +1,49 @@
|
||||
#ifndef __RADIO_MAC_H
|
||||
|
||||
#define __RADIO_MAC_H
|
||||
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
|
||||
extern uint8_t bRadioGetCurrentChannl(void);
|
||||
|
||||
extern void vRadioSetTxSeqNumberInitValue(FRAME_CFG *frm_cfg);
|
||||
extern uint16_t wRadioGetTxSeqNumberCurrent(FRAME_CFG *frm_cfg);
|
||||
extern void vRadioSetTxFCS2(FRAME_CFG *frm_cfg);
|
||||
extern uint8_t bRadioGetRxFCS2(FRAME_CFG *frm_cfg);
|
||||
extern void vRadioSetPayloadLength(FRAME_CFG *frm_cfg);
|
||||
extern uint16_t vRadioGetPayloadLength(FRAME_CFG *frm_cfg);
|
||||
|
||||
|
||||
extern void vRadioCfgPreamble(PREAMBLE_CFG *prm_ptr);
|
||||
extern void vRadioCfgSyncWord(SYNC_CFG *sync_ptr);
|
||||
extern void vRadioCfgNodeAddr(ADDR_CFG *node_addr_ptr);
|
||||
extern void vRadioCfgCrc(CRC_CFG *crc_ptr);
|
||||
extern void vRadioCfgCodeFormat(CODING_FORMAT_CFG *code_format_ptr);
|
||||
extern void vRadioCfgFrameFormat(FRAME_CFG *frame_format_ptr);
|
||||
extern void vRadioCfgWiSunFormat(WI_SUN_CFG *wi_sun_ptr);
|
||||
extern void vRadioCdrTracingModeCfg(CDR_TRACING_CFG *cdr_ptr);
|
||||
|
||||
extern void vRadioCfgWorkMode(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioReadRunModeCfg(void);
|
||||
extern uint8_t bRadioGetTxDutyCycleDoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetTxResendDoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetCMSADoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
|
||||
|
||||
extern void vRadioSendWithAck(boolean_t w_ack, FRAME_CFG *frame_format_ptr);
|
||||
extern void vRadioEnableTxAck(boolean_t en_flg, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioEnableRxAck(boolean_t en_flg, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetFreqChanl(void);
|
||||
extern uint8_t bRadioGetHopDoneTimes(void);
|
||||
extern void vRadioCsmaEnable(boolean_t on_off, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioSetRssiAbsThValue(int8_t rssi);
|
||||
extern void vRadioSetPjdDetWin(uint8_t pjd_win);
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef __RADIO_MAC_H
|
||||
|
||||
#define __RADIO_MAC_H
|
||||
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
|
||||
extern uint8_t bRadioGetCurrentChannl(void);
|
||||
|
||||
extern void vRadioSetTxSeqNumberInitValue(FRAME_CFG *frm_cfg);
|
||||
extern uint16_t wRadioGetTxSeqNumberCurrent(FRAME_CFG *frm_cfg);
|
||||
extern void vRadioSetTxFCS2(FRAME_CFG *frm_cfg);
|
||||
extern uint8_t bRadioGetRxFCS2(FRAME_CFG *frm_cfg);
|
||||
extern void vRadioSetPayloadLength(FRAME_CFG *frm_cfg);
|
||||
extern uint16_t vRadioGetPayloadLength(FRAME_CFG *frm_cfg);
|
||||
|
||||
|
||||
extern void vRadioCfgPreamble(PREAMBLE_CFG *prm_ptr);
|
||||
extern void vRadioCfgSyncWord(SYNC_CFG *sync_ptr);
|
||||
extern void vRadioCfgNodeAddr(ADDR_CFG *node_addr_ptr);
|
||||
extern void vRadioCfgCrc(CRC_CFG *crc_ptr);
|
||||
extern void vRadioCfgCodeFormat(CODING_FORMAT_CFG *code_format_ptr);
|
||||
extern void vRadioCfgFrameFormat(FRAME_CFG *frame_format_ptr);
|
||||
extern void vRadioCfgWiSunFormat(WI_SUN_CFG *wi_sun_ptr);
|
||||
extern void vRadioCdrTracingModeCfg(CDR_TRACING_CFG *cdr_ptr);
|
||||
|
||||
extern void vRadioCfgWorkMode(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioReadRunModeCfg(void);
|
||||
extern uint8_t bRadioGetTxDutyCycleDoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetTxResendDoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetCMSADoneTimes(WORK_MODE_CFG *run_mode_ptr);
|
||||
|
||||
|
||||
extern void vRadioSendWithAck(boolean_t w_ack, FRAME_CFG *frame_format_ptr);
|
||||
extern void vRadioEnableTxAck(boolean_t en_flg, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioEnableRxAck(boolean_t en_flg, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern uint8_t bRadioGetFreqChanl(void);
|
||||
extern uint8_t bRadioGetHopDoneTimes(void);
|
||||
extern void vRadioCsmaEnable(boolean_t on_off, WORK_MODE_CFG *run_mode_ptr);
|
||||
extern void vRadioSetRssiAbsThValue(int8_t rssi);
|
||||
extern void vRadioSetPjdDetWin(uint8_t pjd_win);
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,65 +1,65 @@
|
||||
#ifndef __RADIO_PHY_H
|
||||
|
||||
#define __RADIO_PHY_H
|
||||
//#include "stm8l15x.h"
|
||||
#include "gd32w51x.h"
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
|
||||
extern void vRadioSetInt1Sel( uint8_t int1_sel );
|
||||
extern void vRadioSetInt2Sel( uint8_t int2_sel );
|
||||
extern void vRadioSetInt1Polar( boolean_t int1_polar );
|
||||
extern void vRadioSetInt2Polar( boolean_t int2_polar );
|
||||
extern void vRadioSetInt3Polar( boolean_t int3_polar );
|
||||
|
||||
|
||||
extern void vRadioRssiUpdateSel( uint8_t sel );
|
||||
extern uint8_t bRadioGetRssi( void );
|
||||
extern void vRadioRssiConfig( RSSI_CFG rssi_cfg );
|
||||
extern void vRadioRssiCalOffset( uint8_t cal_offset );
|
||||
|
||||
extern uint8_t bRadioGetLbdValue( void );
|
||||
extern void vRadioSetLbdTH( uint8_t lbd_th );
|
||||
extern uint8_t bRadioGetTemperature( void );
|
||||
extern boolean_t bRadioApiCommand( uint8_t api_cmd );
|
||||
extern void vRadioCdrModeCfg( enum CDR_MODE cdr_mode );
|
||||
extern void vRadioTxRampCfg( boolean_t tx_ramp_en, uint16_t tx_ramp_step );
|
||||
extern void vRadioTxGaussianCfg( boolean_t tx_gaus_en, uint8_t tx_gaus_bt );
|
||||
extern void vRadioAfcCfg( boolean_t afc_en );
|
||||
|
||||
extern uint8_t bRadioGetState( void );
|
||||
extern uint8_t bRadioGoSleep( void );
|
||||
extern uint8_t bRadioGoStandby( void );
|
||||
extern uint8_t bRadioGoTx( void );
|
||||
extern uint8_t bRadioGoRx( void );
|
||||
extern uint8_t bRadioGoTxFS( void );
|
||||
extern uint8_t bRadioGoRxFS( void );
|
||||
|
||||
|
||||
extern void vRadioSetFifoTH( uint16_t fifo_th );
|
||||
extern void vRadioFifoRetent( boolean_t cfg_en );
|
||||
extern void vRadioFifoAutoClearGoRx( boolean_t cfg_en );
|
||||
extern void vRadioFifoAutoRestoreWhenTxDone( boolean_t cfg_en );
|
||||
extern void vRadioFifoMerge( boolean_t cfg_en );
|
||||
extern void vRadioFifoTRxUsageSel( boolean_t cfg_tx );
|
||||
extern void vRadioFifoGetStatus( FIFO_STATUS_FLG* fifo_status );
|
||||
extern void vRadioClearTxFifo( void );
|
||||
extern void vRadioClearRxFifo( void );
|
||||
extern void vRadioManualResetTxFifoPointer( void );
|
||||
|
||||
extern void vRadioInterruptSoucreCfg( INT_SRC_CFG* int_src_ctrl );
|
||||
extern void vRadioInterruptSoucreFlag( INT_SRC_FLG* int_src_flag );
|
||||
extern void vRadioInterruptSoucreClear( INT_SRC_CLR* int_src_clr );
|
||||
|
||||
|
||||
extern void vRadioConfigPageReg( byte page_sel, uint8_t const reg_ptr[], uint8_t reg_len );
|
||||
extern void vRadioReadPageReg( byte page_sel, uint8_t reg_ptr[], uint8_t reg_len );
|
||||
extern boolean_t bRadioIsExist( void );
|
||||
extern uint32_t lRadioChipVersion( void );
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifndef __RADIO_PHY_H
|
||||
|
||||
#define __RADIO_PHY_H
|
||||
//#include "stm8l15x.h"
|
||||
#include "gd32w51x.h"
|
||||
#include "radio_hal.h"
|
||||
#include "CMT2310A_def.h"
|
||||
#include "CMT2310A_reg.h"
|
||||
|
||||
|
||||
extern void vRadioSetInt1Sel( uint8_t int1_sel );
|
||||
extern void vRadioSetInt2Sel( uint8_t int2_sel );
|
||||
extern void vRadioSetInt1Polar( boolean_t int1_polar );
|
||||
extern void vRadioSetInt2Polar( boolean_t int2_polar );
|
||||
extern void vRadioSetInt3Polar( boolean_t int3_polar );
|
||||
|
||||
|
||||
extern void vRadioRssiUpdateSel( uint8_t sel );
|
||||
extern uint8_t bRadioGetRssi( void );
|
||||
extern void vRadioRssiConfig( RSSI_CFG rssi_cfg );
|
||||
extern void vRadioRssiCalOffset( uint8_t cal_offset );
|
||||
|
||||
extern uint8_t bRadioGetLbdValue( void );
|
||||
extern void vRadioSetLbdTH( uint8_t lbd_th );
|
||||
extern uint8_t bRadioGetTemperature( void );
|
||||
extern boolean_t bRadioApiCommand( uint8_t api_cmd );
|
||||
extern void vRadioCdrModeCfg( enum CDR_MODE cdr_mode );
|
||||
extern void vRadioTxRampCfg( boolean_t tx_ramp_en, uint16_t tx_ramp_step );
|
||||
extern void vRadioTxGaussianCfg( boolean_t tx_gaus_en, uint8_t tx_gaus_bt );
|
||||
extern void vRadioAfcCfg( boolean_t afc_en );
|
||||
|
||||
extern uint8_t bRadioGetState( void );
|
||||
extern uint8_t bRadioGoSleep( void );
|
||||
extern uint8_t bRadioGoStandby( void );
|
||||
extern uint8_t bRadioGoTx( void );
|
||||
extern uint8_t bRadioGoRx( void );
|
||||
extern uint8_t bRadioGoTxFS( void );
|
||||
extern uint8_t bRadioGoRxFS( void );
|
||||
|
||||
|
||||
extern void vRadioSetFifoTH( uint16_t fifo_th );
|
||||
extern void vRadioFifoRetent( boolean_t cfg_en );
|
||||
extern void vRadioFifoAutoClearGoRx( boolean_t cfg_en );
|
||||
extern void vRadioFifoAutoRestoreWhenTxDone( boolean_t cfg_en );
|
||||
extern void vRadioFifoMerge( boolean_t cfg_en );
|
||||
extern void vRadioFifoTRxUsageSel( boolean_t cfg_tx );
|
||||
extern void vRadioFifoGetStatus( FIFO_STATUS_FLG* fifo_status );
|
||||
extern void vRadioClearTxFifo( void );
|
||||
extern void vRadioClearRxFifo( void );
|
||||
extern void vRadioManualResetTxFifoPointer( void );
|
||||
|
||||
extern void vRadioInterruptSoucreCfg( INT_SRC_CFG* int_src_ctrl );
|
||||
extern void vRadioInterruptSoucreFlag( INT_SRC_FLG* int_src_flag );
|
||||
extern void vRadioInterruptSoucreClear( INT_SRC_CLR* int_src_clr );
|
||||
|
||||
|
||||
extern void vRadioConfigPageReg( byte page_sel, uint8_t const reg_ptr[], uint8_t reg_len );
|
||||
extern void vRadioReadPageReg( byte page_sel, uint8_t reg_ptr[], uint8_t reg_len );
|
||||
extern boolean_t bRadioIsExist( void );
|
||||
extern uint32_t lRadioChipVersion( void );
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
@ -1,108 +1,108 @@
|
||||
#include "radio_spi.h"
|
||||
|
||||
/******************************
|
||||
**Name: vSpiMasterInit
|
||||
**Func: SPI Master
|
||||
**Input: None
|
||||
*Output: None
|
||||
********************************/
|
||||
void vSpiMasterInit( void )
|
||||
{
|
||||
/* 已经初始化了SPI 这里跳过*/
|
||||
}
|
||||
|
||||
|
||||
uint8_t bSpiWriteByte( uint8_t spi_adr, uint8_t spi_dat )
|
||||
{
|
||||
uint8_t ret;
|
||||
|
||||
spi_adr &= 0x7F;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
ret = Ebyte_Port_SpiTransmitAndReceivce(spi_dat);
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint8_t bSpiReadByte( uint8_t spi_adr )
|
||||
{
|
||||
uint8_t ret;
|
||||
|
||||
spi_adr |= 0x80;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
ret = Ebyte_Port_SpiTransmitAndReceivce(0x00);
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void vSpiBurstWrite( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length )
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
spi_adr &= 0x7F;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
for(i=0; i<spi_length; i++)
|
||||
{
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_dat[i]);
|
||||
}
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
}
|
||||
|
||||
void vSpiBurstRead( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length )
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
spi_adr |= 0x80;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
for(i=0; i<spi_length; i++)
|
||||
{
|
||||
spi_dat[i] = Ebyte_Port_SpiTransmitAndReceivce(0x00);
|
||||
}
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
}
|
||||
|
||||
#include "radio_spi.h"
|
||||
|
||||
/******************************
|
||||
**Name: vSpiMasterInit
|
||||
**Func: SPI Master
|
||||
**Input: None
|
||||
*Output: None
|
||||
********************************/
|
||||
void vSpiMasterInit( void )
|
||||
{
|
||||
/* 已经初始化了SPI 这里跳过*/
|
||||
}
|
||||
|
||||
|
||||
uint8_t bSpiWriteByte( uint8_t spi_adr, uint8_t spi_dat )
|
||||
{
|
||||
uint8_t ret;
|
||||
|
||||
spi_adr &= 0x7F;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
ret = Ebyte_Port_SpiTransmitAndReceivce(spi_dat);
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint8_t bSpiReadByte( uint8_t spi_adr )
|
||||
{
|
||||
uint8_t ret;
|
||||
|
||||
spi_adr |= 0x80;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
ret = Ebyte_Port_SpiTransmitAndReceivce(0x00);
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void vSpiBurstWrite( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length )
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
spi_adr &= 0x7F;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
for(i=0; i<spi_length; i++)
|
||||
{
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_dat[i]);
|
||||
}
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
}
|
||||
|
||||
void vSpiBurstRead( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length )
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
spi_adr |= 0x80;
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 0 );
|
||||
#endif
|
||||
|
||||
Ebyte_Port_SpiTransmitAndReceivce(spi_adr);
|
||||
|
||||
for(i=0; i<spi_length; i++)
|
||||
{
|
||||
spi_dat[i] = Ebyte_Port_SpiTransmitAndReceivce(0x00);
|
||||
}
|
||||
|
||||
/* SPI 片选 CS */
|
||||
#if EBYTE_PORT_SPI_CS_SOFTWARE
|
||||
Ebyte_Port_SpiCsIoControl( 1 );
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1,17 +1,17 @@
|
||||
#ifndef __RADIO_SPI_H
|
||||
|
||||
#define __RADIO_SPI_H
|
||||
|
||||
//#include "stm8l15x.h"
|
||||
#include "gd32w51x.h"
|
||||
|
||||
#include "ebyte_port.h"
|
||||
extern void vSpiMasterInit( void );
|
||||
extern uint8_t bSpiWriteByte( uint8_t spi_adr, uint8_t spi_dat );
|
||||
extern uint8_t bSpiReadByte( uint8_t spi_adr );
|
||||
extern void vSpiBurstWrite( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length );
|
||||
extern void vSpiBurstRead( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length );
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef __RADIO_SPI_H
|
||||
|
||||
#define __RADIO_SPI_H
|
||||
|
||||
//#include "stm8l15x.h"
|
||||
#include "gd32w51x.h"
|
||||
|
||||
#include "ebyte_port.h"
|
||||
extern void vSpiMasterInit( void );
|
||||
extern uint8_t bSpiWriteByte( uint8_t spi_adr, uint8_t spi_dat );
|
||||
extern uint8_t bSpiReadByte( uint8_t spi_adr );
|
||||
extern void vSpiBurstWrite( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length );
|
||||
extern void vSpiBurstRead( uint8_t spi_adr, uint8_t spi_dat[], uint8_t spi_length );
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
55
MBL/source_ns/drivers/CMT2310/CMakeLists.txt
Normal file
55
MBL/source_ns/drivers/CMT2310/CMakeLists.txt
Normal file
@ -0,0 +1,55 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
add_library(cmt2310)
|
||||
add_library(cmt2310_api INTERFACE)
|
||||
|
||||
target_sources(cmt2310
|
||||
PRIVATE
|
||||
0_Project/Uart_PingPong/main.c
|
||||
0_Project/Uart_PingPong/ebyte/ebyte_callback.c
|
||||
0_Project/Uart_PingPong/ebyte/ebyte_core.c
|
||||
0_Project/Uart_PingPong/ebyte/ebyte_port.c
|
||||
0_Project/Uart_PingPong/irq_handle.c
|
||||
1_Middleware/Kfifo/ebyte_kfifo.c
|
||||
1_Middleware/Produce/ebyte_debug.c
|
||||
2_Ebyte_Board_Support/E15-EVB02/board_button.c
|
||||
2_Ebyte_Board_Support/E15-EVB02/board_mini_printf.c
|
||||
2_Ebyte_Board_Support/E15-EVB02/board.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_433mhz.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/radio.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_868mhz.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_915mhz.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/radio_phy.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/radio_hal.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/cmt2310a_410mhz.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/radio_mac.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/radio_spi.c
|
||||
3_Ebyte_WirelessModule_Drivers/E48xMx/ebyte_e48x.c
|
||||
)
|
||||
|
||||
target_include_directories(cmt2310
|
||||
PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/0_Project/Uart_PingPong/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/0_Project/Uart_PingPong/ebyte/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/1_Middleware/Kfifo/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/1_Middleware/Produce/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/2_Ebyte_Board_Support/E15-EVB02/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3_Ebyte_WirelessModule_Drivers/E48xMx/
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/4_STM8_L15x_StdPeriph_Drivers/
|
||||
# ${CMAKE_CURRENT_SOURCE_DIR}/4_STM8_L15x_StdPeriph_Drivers/inc/
|
||||
)
|
||||
|
||||
target_include_directories(cmt2310_api
|
||||
INTERFACE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/0_Project/Uart_PingPong/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/0_Project/Uart_PingPong/ebyte/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/1_Middleware/Kfifo/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/1_Middleware/Produce/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/2_Ebyte_Board_Support/E15-EVB02/
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/3_Ebyte_WirelessModule_Drivers/E48xMx/
|
||||
)
|
||||
|
||||
target_link_libraries(cmt2310
|
||||
os_api
|
||||
gd32w51x_peripheral_api
|
||||
)
|
||||
@ -1,21 +1,22 @@
|
||||
|
||||
|
||||
|-E15-EVB02-E48-DEMO //主文件夹
|
||||
| |
|
||||
| |-0_Project
|
||||
| |_IAR_for_Stm8 //工程文件夹,用IAR打开
|
||||
|
|
||||
| |-1_Middleware
|
||||
| |—Kfifo //通用数组队列
|
||||
| |_Produce //PC测试
|
||||
|
|
||||
| |-2_Ebyte_Board_Support
|
||||
| |_E15-EVB02 //板载资源初始化
|
||||
|
|
||||
| |-3_Ebyte_WirelessModule_Drivers
|
||||
| |_E48xMx //E48驱动
|
||||
|
|
||||
| |-4_STM8_L15x_StdPeriph_Drivers
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 目录结构
|
||||
|
||||
```shell
|
||||
|-E15-EVB02-E48-DEMO //主文件夹
|
||||
| |
|
||||
| |-0_Project
|
||||
| |_IAR_for_Stm8 //工程文件夹,用IAR打开
|
||||
|
|
||||
| |-1_Middleware
|
||||
| |—Kfifo //通用数组队列
|
||||
| |_Produce //PC测试
|
||||
|
|
||||
| |-2_Ebyte_Board_Support
|
||||
| |_E15-EVB02 //板载资源初始化
|
||||
|
|
||||
| |-3_Ebyte_WirelessModule_Drivers
|
||||
| |_E48xMx //E48驱动
|
||||
|
|
||||
| |-4_STM8_L15x_StdPeriph_Drivers
|
||||
```
|
||||
@ -39,10 +39,13 @@ OF SUCH DAMAGE.
|
||||
#include "mbl_sys.h"
|
||||
#include "mbl_uart.h"
|
||||
#include "mbl_flash.h"
|
||||
#include "ebyte_e48.h"
|
||||
#include "rom_region.h"
|
||||
|
||||
typedef void (*img_fptr_t) (void);
|
||||
int32_t mbl_err_process = ERR_PROCESS_ENDLESS_LOOP;
|
||||
int32_t mbl_trace_level = MBL_WARN;
|
||||
struct rom_api_s_t *p_rom_api_s = (struct rom_api_s_t *)ROM_API_ARRAY_BASE;
|
||||
|
||||
#if defined(__ARM_ARCH_8M_MAIN__) || defined(__ARM_ARCH_8M_BASE__)
|
||||
/* Macros to pick linker symbols */
|
||||
@ -72,6 +75,7 @@ static void jump_to_main_image(uint32_t msp, uint32_t reset)
|
||||
|
||||
img_reset = (img_fptr_t)reset;
|
||||
|
||||
// __disable_irq();
|
||||
#if defined(__ARM_ARCH_8M_MAIN__) || defined(__ARM_ARCH_8M_BASE__)
|
||||
/* Restore the Main Stack Pointer Limit register's reset value
|
||||
* before passing execution to runtime firmware to make the
|
||||
@ -95,12 +99,13 @@ static void jump_to_main_image(uint32_t msp, uint32_t reset)
|
||||
*/
|
||||
int main(void)
|
||||
{
|
||||
int ret;
|
||||
struct image_header hdr;
|
||||
uint32_t boot_idx = 0, image_offset = 0, version;
|
||||
uint32_t arm_vector[2];
|
||||
int ret;
|
||||
#if defined(__ARM_ARCH_8M_MAIN__) || defined(__ARM_ARCH_8M_BASE__)
|
||||
uint32_t msp_stack_bottom = 0;
|
||||
|
||||
#if defined (__ICCARM__)
|
||||
msp_stack_bottom = (uint32_t)®ION_NAME(CSTACK, $$Base);
|
||||
#else
|
||||
@ -119,6 +124,9 @@ int main(void)
|
||||
/* Initialize flash for reading system info */
|
||||
flash_init();
|
||||
|
||||
/* Init Systick */
|
||||
ebyte_main();
|
||||
|
||||
/* Initialize system status if empty or validate system status */
|
||||
ret = sys_status_check();
|
||||
if (ret < 0) {
|
||||
|
||||
@ -58,6 +58,7 @@ OF SUCH DAMAGE.
|
||||
#include "wifi_management.h"
|
||||
#include "uart.h"
|
||||
#include "console.h"
|
||||
#include "flash_api.h"
|
||||
|
||||
#ifdef CONFIG_TELNET_SERVER
|
||||
#include "telnet_main.h"
|
||||
@ -1076,6 +1077,66 @@ Usage:
|
||||
DEBUGPRINT(" 1 # support 20/40MHz\r\n");
|
||||
}
|
||||
|
||||
typedef void (*img_fptr_t) (void);
|
||||
#define IMAGE_HEADER_SIZE 0
|
||||
|
||||
/*!
|
||||
\brief set bw to support 20MHz only or 20/40MHz
|
||||
\param[in] argc: number of parameters
|
||||
\param[in] argv: the pointer to the array that holds the parameters
|
||||
\param[out] none
|
||||
\retval none
|
||||
*/
|
||||
static void cmd_boot(int argc, char **argv)
|
||||
{
|
||||
static img_fptr_t img_reset;
|
||||
uint32_t arm_vector[2] = {0};
|
||||
uint32_t boot_idx = 0, image_offset = 0, version;
|
||||
|
||||
if (argc > 2) {
|
||||
DEBUGPRINT("jump_bml: command format error!\r\n");
|
||||
goto Usage;
|
||||
}
|
||||
|
||||
/* Read the MSP and Reset_Handler of the main image */
|
||||
flash_read((image_offset + IMAGE_HEADER_SIZE), arm_vector, 8);
|
||||
if (!is_valid_flash_addr(arm_vector[1])) {
|
||||
DEBUGPRINT("Error, image vector reset is invalid (%08x).\r\n", arm_vector[1]);
|
||||
goto BootFailed;
|
||||
}
|
||||
|
||||
for (int i = 0; i < sizeof(NVIC->ICER) / 4; i++)
|
||||
NVIC->ICER[i] = ~(0UL);
|
||||
|
||||
/* Jump to main image */
|
||||
img_reset = (img_fptr_t)arm_vector[1];
|
||||
#if defined(__ARM_ARCH_8M_MAIN__) || defined(__ARM_ARCH_8M_BASE__)
|
||||
/* Restore the Main Stack Pointer Limit register's reset value
|
||||
* before passing execution to runtime firmware to make the
|
||||
* bootloader transparent to it.
|
||||
*/
|
||||
__set_MSPLIM(0);
|
||||
#endif
|
||||
__set_MSP(arm_vector[0]);
|
||||
|
||||
__DSB();
|
||||
__ISB();
|
||||
|
||||
img_reset();
|
||||
|
||||
BootFailed:
|
||||
DEBUGPRINT("\r[%s|%u] Jump to MBL failed.\r\n", __FUNCTION__, __LINE__);
|
||||
while(1);
|
||||
|
||||
Usage:
|
||||
DEBUGPRINT("\rUsage:\r\n");
|
||||
DEBUGPRINT(" jm [0/1]\r\n");
|
||||
DEBUGPRINT(" 0 # dry run.\r\n");
|
||||
DEBUGPRINT(" 1 # show the verbosity of messages.\r\n");
|
||||
|
||||
|
||||
}
|
||||
|
||||
static const cmd_entry cmd_table[] = {
|
||||
#ifdef CONFIG_BASECMD
|
||||
{"wifi_open", cmd_wifi_open},
|
||||
@ -1121,6 +1182,7 @@ static const cmd_entry cmd_table[] = {
|
||||
{"wifi_set_bw", cmd_bw_set},
|
||||
#endif
|
||||
{"reboot", cmd_reboot},
|
||||
{"bootm", cmd_boot},
|
||||
{"help", cmd_help}
|
||||
};
|
||||
|
||||
|
||||
@ -197,11 +197,11 @@ int main(void)
|
||||
}
|
||||
#endif // CONFIG_TASK_LED
|
||||
|
||||
if (NULL == sys_task_create(NULL, (const uint8_t *)"sub1g_task", NULL, START_TASK_STK_SIZE, 0, START_TASK_PRIO, sub1g_task, NULL)) {
|
||||
if (NULL == sys_task_create(NULL, (const uint8_t *)"start_task", NULL, START_TASK_STK_SIZE, 0, START_TASK_PRIO, start_task, NULL)) {
|
||||
DEBUGPRINT("ERROR: create start task failed\r\n");
|
||||
}
|
||||
|
||||
if (NULL == sys_task_create(NULL, (const uint8_t *)"start_task", NULL, START_TASK_STK_SIZE, 0, START_TASK_PRIO, start_task, NULL)) {
|
||||
if (NULL == sys_task_create(NULL, (const uint8_t *)"sub1g_task", NULL, START_TASK_STK_SIZE, 0, START_TASK_PRIO, sub1g_task, NULL)) {
|
||||
DEBUGPRINT("ERROR: create start task failed\r\n");
|
||||
}
|
||||
|
||||
|
||||
@ -33,4 +33,4 @@ target_link_libraries(bsp
|
||||
cmt2310_api
|
||||
)
|
||||
|
||||
add_subdirectory(drivers)
|
||||
add_subdirectory(drivers/CMT2310)
|
||||
|
||||
12
NSPE/WIFI_IOT/bsp/drivers/.editorconfig
Normal file
12
NSPE/WIFI_IOT/bsp/drivers/.editorconfig
Normal file
@ -0,0 +1,12 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = tab
|
||||
indent_size = 8
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = false
|
||||
@ -1 +0,0 @@
|
||||
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo\ebyte_kfifo.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02\board.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02\board_button.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02\board_mini_printf.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\cmt2310a_410mhz.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\cmt2310a_433mhz.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\cmt2310a_868mhz.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\cmt2310a_915mhz.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\ebyte_callback.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\ebyte_core.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce\ebyte_debug.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E07xMx\ebyte_e07x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E07xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc\c
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E07xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Produce
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="F:\01_JH_Software\IAR\Install_ForStm8\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="F:\\01_JH_Software\\IAR\\Install_ForStm8\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E10xMx\ebyte_e10x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E10xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc\c
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E10xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Produce
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="F:\01_JH_Software\IAR\Install_ForStm8\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="F:\\01_JH_Software\\IAR\\Install_ForStm8\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E220xMx\ebyte_e220x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E22xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc\c
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E22xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Produce
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="F:\01_JH_Software\IAR\Install_ForStm8\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="F:\\01_JH_Software\\IAR\\Install_ForStm8\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,316 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E22xMx\ebyte_e22x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E22xMx
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E22xMx
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\E15-EVB02-E48\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\ebyte_e48x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E49xMx\ebyte_e49x.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E49xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc\c
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\E49xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Kfifo
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\1_Middleware\Produce
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="F:\01_JH_Software\IAR\Install_ForStm8\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="F:\\01_JH_Software\\IAR\\Install_ForStm8\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte\ebyte_port.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\main.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Binary file not shown.
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\radio.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\radio_hal.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\radio_mac.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\radio_phy.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx\radio_spi.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_adc.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_aes.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_beep.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_clk.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_comp.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_dac.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_dma.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_exti.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_flash.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_gpio.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_i2c.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_irtim.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,312 +0,0 @@
|
||||
"D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\stm8l15x_it.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\..\..\..\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc
|
||||
-I
|
||||
D:\software\IAR_EW\IAR_STM8_310\stm8\inc\c
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Kfifo
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\0_Project\IAR_for_Stm8\Uart_PingPong\ebyte
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\1_Middleware\Produce
|
||||
-I
|
||||
D:\Project_UART\E48\E48-XXXM20S\PROGRAM_FILE\E15-EVB02-E48-DEMO\3_Ebyte_WirelessModule_Drivers\E48xMx
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\software\IAR_EW\IAR_STM8_310\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="D:\\software\\IAR_EW\\IAR_STM8_310\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
@ -1,304 +0,0 @@
|
||||
"E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\src\stm8l15x_itc.c"
|
||||
-std=c99
|
||||
-ferror-limit=0
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Empty_Template\..\..\..\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Empty_Template\..\..\..\3_Ebyte_WirelessModule_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Empty_Template\..\..\..\3_Ebyte_WirelessModule_Drivers\E22xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Empty_Template\..\..\..\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\0_Project\IAR_for_Stm8\Empty_Template\..\..\..\4_STM8_L15x_StdPeriph_Drivers
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc
|
||||
-I
|
||||
F:\01_JH_Software\IAR\Install_ForStm8\stm8\inc\c
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\2_Ebyte_Board_Support\E15-EVB02
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\3_Ebyte_WirelessModule_Drivers
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\3_Ebyte_WirelessModule_Drivers\E22xMx
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers\inc
|
||||
-I
|
||||
E:\Ebyte_Product\0_Ebyte\E15\E15-EVB02\Software\2021-05-06-Project\4_STM8_L15x_StdPeriph_Drivers
|
||||
-D__CHAR_BITS__=8
|
||||
-D__CHAR_MAX__=0xff
|
||||
-D__CHAR_MIN__=0
|
||||
-D__CHAR_SIZE__=1
|
||||
-D__UNSIGNED_CHAR_MAX__=0xff
|
||||
-D__SIGNED_CHAR_MAX__=127
|
||||
-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1)
|
||||
-D__CHAR_ALIGN__=1
|
||||
-D__SHORT_SIZE__=2
|
||||
-D__UNSIGNED_SHORT_MAX__=0xffffU
|
||||
-D__SIGNED_SHORT_MAX__=32767
|
||||
-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1)
|
||||
-D__SHORT_ALIGN__=1
|
||||
-D__INT_SIZE__=2
|
||||
-D__UNSIGNED_INT_MAX__=0xffffU
|
||||
-D__SIGNED_INT_MAX__=32767
|
||||
-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1)
|
||||
-D__INT_ALIGN__=1
|
||||
-D__LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_MAX__=0xffffffffUL
|
||||
-D__SIGNED_LONG_MAX__=2147483647L
|
||||
-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1)
|
||||
-D__LONG_ALIGN__=1
|
||||
-D__LONG_LONG_SIZE__=4
|
||||
-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffULL
|
||||
-D__SIGNED_LONG_LONG_MAX__=2147483647LL
|
||||
-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1)
|
||||
-D__LONG_LONG_ALIGN__=1
|
||||
-D__INT8_T_TYPE__=signed char
|
||||
-D__INT8_T_MAX__=127
|
||||
-D__INT8_T_MIN__=(-__INT8_T_MAX__-1)
|
||||
-D__UINT8_T_TYPE__=unsigned char
|
||||
-D__UINT8_T_MAX__=0xff
|
||||
-D__INT8_SIZE_PREFIX__="hh"
|
||||
-D__INT16_T_TYPE__=signed int
|
||||
-D__INT16_T_MAX__=32767
|
||||
-D__INT16_T_MIN__=(-__INT16_T_MAX__-1)
|
||||
-D__UINT16_T_TYPE__=unsigned int
|
||||
-D__UINT16_T_MAX__=0xffffU
|
||||
-D__INT16_SIZE_PREFIX__=""
|
||||
-D__INT32_T_TYPE__=signed long int
|
||||
-D__INT32_T_MAX__=2147483647L
|
||||
-D__INT32_T_MIN__=(-__INT32_T_MAX__-1)
|
||||
-D__UINT32_T_TYPE__=unsigned long int
|
||||
-D__UINT32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_SIZE_PREFIX__="l"
|
||||
-D__INT_LEAST8_T_TYPE__=signed char
|
||||
-D__INT_LEAST8_T_MAX__=127
|
||||
-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1)
|
||||
-D__UINT_LEAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_LEAST8_T_MAX__=0xff
|
||||
-D__INT8_C_SUFFIX__=
|
||||
-D__UINT8_C_SUFFIX__=
|
||||
-D__INT_LEAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_LEAST16_T_TYPE__=signed int
|
||||
-D__INT_LEAST16_T_MAX__=32767
|
||||
-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1)
|
||||
-D__UINT_LEAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_LEAST16_T_MAX__=0xffffU
|
||||
-D__INT16_C_SUFFIX__=
|
||||
-D__UINT16_C_SUFFIX__=U
|
||||
-D__INT_LEAST16_SIZE_PREFIX__=""
|
||||
-D__INT_LEAST32_T_TYPE__=signed long int
|
||||
-D__INT_LEAST32_T_MAX__=2147483647L
|
||||
-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1)
|
||||
-D__UINT_LEAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_LEAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT32_C_SUFFIX__=L
|
||||
-D__UINT32_C_SUFFIX__=UL
|
||||
-D__INT_LEAST32_SIZE_PREFIX__="l"
|
||||
-D__INT_FAST8_T_TYPE__=signed char
|
||||
-D__INT_FAST8_T_MAX__=127
|
||||
-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1)
|
||||
-D__UINT_FAST8_T_TYPE__=unsigned char
|
||||
-D__UINT_FAST8_T_MAX__=0xff
|
||||
-D__INT_FAST8_SIZE_PREFIX__="hh"
|
||||
-D__INT_FAST16_T_TYPE__=signed int
|
||||
-D__INT_FAST16_T_MAX__=32767
|
||||
-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1)
|
||||
-D__UINT_FAST16_T_TYPE__=unsigned int
|
||||
-D__UINT_FAST16_T_MAX__=0xffffU
|
||||
-D__INT_FAST16_SIZE_PREFIX__=""
|
||||
-D__INT_FAST32_T_TYPE__=signed long int
|
||||
-D__INT_FAST32_T_MAX__=2147483647L
|
||||
-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1)
|
||||
-D__UINT_FAST32_T_TYPE__=unsigned long int
|
||||
-D__UINT_FAST32_T_MAX__=0xffffffffUL
|
||||
-D__INT_FAST32_SIZE_PREFIX__="l"
|
||||
-D__INTMAX_T_TYPE__=signed long int
|
||||
-D__INTMAX_T_MAX__=2147483647L
|
||||
-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1)
|
||||
-D__UINTMAX_T_TYPE__=unsigned long int
|
||||
-D__UINTMAX_T_MAX__=0xffffffffUL
|
||||
-D__INTMAX_C_SUFFIX__=L
|
||||
-D__UINTMAX_C_SUFFIX__=UL
|
||||
-D__INTMAX_SIZE_PREFIX__="l"
|
||||
-D__FLOAT_SIZE__=4
|
||||
-D__FLOAT_ALIGN__=1
|
||||
-D__DOUBLE_SIZE__=4
|
||||
-D__DOUBLE_ALIGN__=1
|
||||
-D__LONG_DOUBLE_SIZE__=4
|
||||
-D__LONG_DOUBLE_ALIGN__=1
|
||||
-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0
|
||||
-D__SUBNORMAL_FLOATING_POINTS__=1
|
||||
-D__SIZE_T_TYPE__=unsigned short int
|
||||
-D__SIZE_T_MAX__=0xffffU
|
||||
-D__PTRDIFF_T_TYPE__=signed short int
|
||||
-D__PTRDIFF_T_MAX__=32767
|
||||
-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1)
|
||||
-D__INTPTR_T_TYPE__=signed short int
|
||||
-D__INTPTR_T_MAX__=32767
|
||||
-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1)
|
||||
-D__UINTPTR_T_TYPE__=unsigned short int
|
||||
-D__UINTPTR_T_MAX__=0xffffU
|
||||
-D__INTPTR_SIZE_PREFIX__="h"
|
||||
-D__JMP_BUF_ELEMENT_TYPE__=unsigned char
|
||||
-D__JMP_BUF_NUM_ELEMENTS__=28
|
||||
-D__TID__=0x3800
|
||||
-D__VER__=310
|
||||
-D__SUBVERSION__=1
|
||||
-D__BUILD_NUMBER__=201
|
||||
-D__IAR_SYSTEMS_ICC__=8
|
||||
-D__VA_STACK_DECREASING__=1
|
||||
-D__VA_STACK_ALIGN__=1
|
||||
-D__VA_STACK_ALIGN_EXTRA_BEFORE__=1
|
||||
-D__LITTLE_ENDIAN__=0
|
||||
-D__BOOL_TYPE__=unsigned char
|
||||
-D__BOOL_SIZE__=1
|
||||
-D__WCHAR_T_TYPE__=unsigned short int
|
||||
-D__WCHAR_T_SIZE__=2
|
||||
-D__WCHAR_T_MAX__=0xffffU
|
||||
-D__DEF_PTR_MEM__=__near
|
||||
-D__DEF_PTR_SIZE__=2
|
||||
-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__CODE_MEM0__=__near_func
|
||||
-D__CODE_MEM0_POINTER_OK__=1
|
||||
-D__CODE_MEM0_UNIQUE_POINTER__=1
|
||||
-D__CODE_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0__=__tiny
|
||||
-D__DATA_MEM0_POINTER_OK__=1
|
||||
-D__DATA_MEM0_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM0_VAR_OK__=1
|
||||
-D__DATA_MEM0_INTPTR_TYPE__=signed char
|
||||
-D__DATA_MEM0_UINTPTR_TYPE__=unsigned char
|
||||
-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="hh"
|
||||
-D__DATA_MEM0_MAX_SIZE__=0xff
|
||||
-D__DATA_MEM1__=__near
|
||||
-D__DATA_MEM1_POINTER_OK__=1
|
||||
-D__DATA_MEM1_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM1_VAR_OK__=1
|
||||
-D__DATA_MEM1_INDEX_TYPE__=short
|
||||
-D__DATA_MEM1_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM1_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM1_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM1_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM1_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM1_HEAP_SEGMENT__="HEAP"
|
||||
-D__DATA_MEM1_PAGE_SIZE__=0
|
||||
-D__DATA_MEM1_HEAP__=1
|
||||
-D__DATA_MEM2__=__far
|
||||
-D__DATA_MEM2_POINTER_OK__=1
|
||||
-D__DATA_MEM2_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM2_VAR_OK__=1
|
||||
-D__DATA_MEM2_INDEX_TYPE__=short
|
||||
-D__DATA_MEM2_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM2_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM2_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM2_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM2_MAX_SIZE__=0xffff
|
||||
-D__DATA_MEM3__=__huge
|
||||
-D__DATA_MEM3_POINTER_OK__=1
|
||||
-D__DATA_MEM3_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM3_VAR_OK__=1
|
||||
-D__DATA_MEM3_INDEX_TYPE__=long
|
||||
-D__DATA_MEM3_SIZE_TYPE__=unsigned long
|
||||
-D__DATA_MEM3_INTPTR_TYPE__=long int
|
||||
-D__DATA_MEM3_UINTPTR_TYPE__=unsigned long int
|
||||
-D__DATA_MEM3_INTPTR_SIZE_PREFIX__="l"
|
||||
-D__DATA_MEM3_MAX_SIZE__=0xffffffff
|
||||
-D__DATA_MEM4__=__eeprom
|
||||
-D__DATA_MEM4_POINTER_OK__=1
|
||||
-D__DATA_MEM4_UNIQUE_POINTER__=1
|
||||
-D__DATA_MEM4_VAR_OK__=1
|
||||
-D__DATA_MEM4_INDEX_TYPE__=short
|
||||
-D__DATA_MEM4_SIZE_TYPE__=unsigned short
|
||||
-D__DATA_MEM4_INTPTR_TYPE__=short int
|
||||
-D__DATA_MEM4_UINTPTR_TYPE__=unsigned short int
|
||||
-D__DATA_MEM4_INTPTR_SIZE_PREFIX__="h"
|
||||
-D__DATA_MEM4_MAX_SIZE__=0xffff
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__near_func, 0, _P1, _P2)
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__near, 1, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__far, 2, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__huge, 3, _P1, _P2) __DATA_PTR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__tiny, 0, _P1, _P2) __VAR_MEM_HELPER3__(__near, 1, _P1, _P2) __VAR_MEM_HELPER3__(__far, 2, _P1, _P2) __VAR_MEM_HELPER3__(__huge, 3, _P1, _P2) __VAR_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__HEAP_MEM0__=1
|
||||
-D__HEAP_DEFAULT_MEM__=1
|
||||
-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__near, 1, _P1, _P2)
|
||||
-D__MULTIPLE_HEAPS__=0
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPM_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPM_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__near, 1, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__huge, 3, _P1, _P2) __TOPP_DATA_MEM_HELPER3__(__eeprom, 4, _P1, _P2)
|
||||
-D__DEF_HEAP_MEM__=__near
|
||||
-D__MULTIPLE_INHERITANCE__=1
|
||||
-D_RTSL_COMPARE_T=unsigned char
|
||||
-D__CODE_MODEL__=__SMALL_CODE_MODEL__
|
||||
-D__CORE__=__STM8__
|
||||
-D__DATA_MODEL__=__MEDIUM_DATA_MODEL__
|
||||
-D__ICCSTM8__=1
|
||||
-D__LARGE_CODE_MODEL__=3
|
||||
-D__LARGE_DATA_MODEL__=3
|
||||
-D__MEDIUM_CODE_MODEL__=2
|
||||
-D__MEDIUM_DATA_MODEL__=2
|
||||
-D__SMALL_CODE_MODEL__=1
|
||||
-D__SMALL_DATA_MODEL__=1
|
||||
-D__STM8__=1
|
||||
-D__PLAIN_INT_BITFIELD_IS_SIGNED__=1
|
||||
-D__HAS_WEAK__=1
|
||||
-D__HAS_LOCATED_DECLARATION__=1
|
||||
-D__HAS_LOCATED_WITH_INIT__=1
|
||||
-D__IAR_COMPILERBASE__=595714
|
||||
-D__STDC__=1
|
||||
-D__STDC_VERSION__=199901L
|
||||
-D__STDC_HOSTED__=1
|
||||
-D__STDC_NO_VLA__=1
|
||||
-D__STDC_NO_ATOMICS__=1
|
||||
-D__EDG_IA64_ABI=1
|
||||
-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1
|
||||
-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1
|
||||
-D__EDG_TYPE_TRAITS_ENABLED=1
|
||||
-D__EDG__=1
|
||||
-D__EDG_VERSION__=410
|
||||
-D__EDG_SIZE_TYPE__=unsigned short
|
||||
-D__EDG_PTRDIFF_TYPE__=short
|
||||
-D__EDG_DELTA_TYPE=short
|
||||
-D__EDG_IA64_VTABLE_ENTRY_TYPE=short
|
||||
-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short
|
||||
-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1
|
||||
-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1
|
||||
-D__EDG_ABI_COMPATIBILITY_VERSION=9999
|
||||
-D__EDG_ABI_CHANGES_FOR_RTTI=1
|
||||
-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1
|
||||
-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1
|
||||
-D__EDG_BSD=0
|
||||
-D__EDG_SYSV=0
|
||||
-D__EDG_ANSIC=1
|
||||
-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1
|
||||
-D_DLIB_CONFIG_FILE_HEADER_NAME="F:\01_JH_Software\IAR\Install_ForStm8\stm8\LIB\dlstm8smn.h"
|
||||
-D_DLIB_CONFIG_FILE_STRING="F:\\01_JH_Software\\IAR\\Install_ForStm8\\stm8\\LIB\\dlstm8smn.h"
|
||||
-D__VERSION__="IAR C/C++ Compiler V3.10.1.201 for STM8"
|
||||
-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_MEMORY_LIST3__(_P1, _P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_MEMORY_LIST3__(_P1, _P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 )
|
||||
-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 )
|
||||
-D__CODE_PTR_MEMORY_LIST3__(_P1, _P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 )
|
||||
-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 )
|
||||
-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__DATA_PTR_MEMORY_LIST3__(_P1, _P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__VAR_MEMORY_LIST3__(_P1, _P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__HEAP_MEMORY_LIST3__(_P1, _P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 )
|
||||
-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ )
|
||||
-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPM_DATA_MEMORY_LIST1__()=
|
||||
-D__TOPM_DATA_MEMORY_LIST2__(_P1)=
|
||||
-D__TOPM_DATA_MEMORY_LIST3__(_P1, _P2)=
|
||||
-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 )
|
||||
-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 )
|
||||
-D__TOPP_DATA_MEMORY_LIST3__(_P1, _P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 )
|
||||
-D__DATA_MEM0_SIZE_TYPE__=unsigned int
|
||||
-D__DATA_MEM0_INDEX_TYPE__=signed int
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user