123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /*******************************************************************************
- * Copyright (C) 2018, Huada Semiconductor Co.,Ltd All rights reserved.
- *
- * This software is owned and published by:
- * Huada Semiconductor Co.,Ltd ("HDSC").
- *
- * BY DOWNLOADING, INSTALLING OR USING THIS SOFTWARE, YOU AGREE TO BE BOUND
- * BY ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT.
- *
- * This software contains source code for use with HDSC
- * components. This software is licensed by HDSC to be adapted only
- * for use in systems utilizing HDSC components. HDSC shall not be
- * responsible for misuse or illegal use of this software for devices not
- * supported herein. HDSC is providing this software "AS IS" and will
- * not be responsible for issues arising from incorrect user implementation
- * of the software.
- *
- * Disclaimer:
- * HDSC MAKES NO WARRANTY, EXPRESS OR IMPLIED, ARISING BY LAW OR OTHERWISE,
- * REGARDING THE SOFTWARE (INCLUDING ANY ACOOMPANYING WRITTEN MATERIALS),
- * ITS PERFORMANCE OR SUITABILITY FOR YOUR INTENDED USE, INCLUDING,
- * WITHOUT LIMITATION, THE IMPLIED WARRANTY OF MERCHANTABILITY, THE IMPLIED
- * WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE OR USE, AND THE IMPLIED
- * WARRANTY OF NONINFRINGEMENT.
- * HDSC SHALL HAVE NO LIABILITY (WHETHER IN CONTRACT, WARRANTY, TORT,
- * NEGLIGENCE OR OTHERWISE) FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT
- * LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION,
- * LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING FROM USE OR
- * INABILITY TO USE THE SOFTWARE, INCLUDING, WITHOUT LIMITATION, ANY DIRECT,
- * INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS OF DATA,
- * SAVINGS OR PROFITS,
- * EVEN IF Disclaimer HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
- * YOU ASSUME ALL RESPONSIBILITIES FOR SELECTION OF THE SOFTWARE TO ACHIEVE YOUR
- * INTENDED RESULTS, AND FOR THE INSTALLATION OF, USE OF, AND RESULTS OBTAINED
- * FROM, THE SOFTWARE.
- *
- * This software may be replicated in part or whole for the licensed use,
- * with the restriction that this Disclaimer and Copyright notice must be
- * included with each copy of this software, whether used in part or whole,
- * at all times.
- */
- /******************************************************************************/
- /** \file ddl.h
- **
- ** DDL common define.
- ** @link SampleGroup Some description @endlink
- **
- ** - 2018-04-15 1.0 Lux First version.
- **
- ******************************************************************************/
- #ifndef __DDL_H__
- #define __DDL_H__
- /******************************************************************************/
- /* Include files */
- /******************************************************************************/
- #include "base_types.h"
- #include "hc32l136.h"
- #include "system_hc32l136.h"
- #include "sysctrl.h"
- /* C binding of definitions if building with C++ compiler */
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /******************************************************************************/
- /* Global pre-processor symbols/macros ('#define') */
- /* Macro for initializing local structures to zero */
- /******************************************************************************/
- #define DDL_ZERO_STRUCT(x) ddl_memclr((uint8_t*)&(x), (uint32_t)(sizeof(x)))
- #define DEC2BCD(x) ((((x)/10)<<4) + ((x)%10))
- #define BCD2DEC(x) ((((x)>>4)*10) + ((x)&0x0F))
- #define setBit(addr,offset,flag) { if( (flag) > 0u){\
- *((volatile uint32_t *)(addr)) |= ((1UL)<<(offset));\
- }else{\
- *((volatile uint32_t *)(addr)) &= (~(1UL<<(offset)));\
- }\
- }
- #define getBit(addr,offset) ((((*((volatile uint32_t *)(addr))) >> (offset)) & 1u)>0?1u:0)
- /**
- ******************************************************************************
- ** Global Device Series List
- ******************************************************************************/
- #define DDL_DEVICE_SERIES_HC32L136 (0u)
- /**
- ******************************************************************************
- ** Global Device Package List
- ******************************************************************************/
- // package definitions of HC device.
- #define DDL_DEVICE_PACKAGE_HC_C (0x00u)
- #define DDL_DEVICE_PACKAGE_HC_F (0x10u)
- #define DDL_DEVICE_PACKAGE_HC_J (0x20u)
- #define DDL_DEVICE_PACKAGE_HC_K (0x30u)
- /******************************************************************************/
- /* User Device Setting Include file */
- /******************************************************************************/
- #include "ddl_device.h" // MUST be included here!
- /**
- ******************************************************************************
- ** \brief IRQ name definition for all type MCUs
- ******************************************************************************/
-
- #define PORTA_IRQHandler(void) IRQ000_Handler(void)
- #define PORTB_IRQHandler(void) IRQ001_Handler(void)
- #define PORTC_IRQHandler(void) IRQ002_Handler(void)
- #define PORTD_IRQHandler(void) IRQ003_Handler(void)
- #define DMAC_IRQHandler(void) IRQ004_Handler(void)
- #define TIM3_IRQHandler(void) IRQ005_Handler(void)
- #define UART0_IRQHandler(void) IRQ006_Handler(void)
- #define UART1_IRQHandler(void) IRQ007_Handler(void)
- #define LPUART0_IRQHandler(void) IRQ008_Handler(void)
- #define LPUART1_IRQHandler(void) IRQ009_Handler(void)
- #define SPI0_IRQHandler(void) IRQ010_Handler(void)
- #define SPI1_IRQHandler(void) IRQ011_Handler(void)
- #define I2C0_IRQHandler(void) IRQ012_Handler(void)
- #define I2C1_IRQHandler(void) IRQ013_Handler(void)
- #define TIM0_IRQHandler(void) IRQ014_Handler(void)
- #define TIM1_IRQHandler(void) IRQ015_Handler(void)
- #define TIM2_IRQHandler(void) IRQ016_Handler(void)
- #define LPTIM_IRQHandler(void) IRQ017_Handler(void)
- #define TIM4_IRQHandler(void) IRQ018_Handler(void)
- #define TIM5_IRQHandler(void) IRQ019_Handler(void)
- #define TIM6_IRQHandler(void) IRQ020_Handler(void)
- #define PCA_IRQHandler(void) IRQ021_Handler(void)
- #define WDT_IRQHandler(void) IRQ022_Handler(void)
- #define RTC_IRQHandler(void) IRQ023_Handler(void)
- #define ADC_IRQHandler(void) IRQ024_Handler(void)
- #define PCNT_IRQHandler(void) IRQ025_Handler(void)
- #define VC0_IRQHandler(void) IRQ026_Handler(void)
- #define VC1_IRQHandler(void) IRQ027_Handler(void)
- #define LVD_IRQHandler(void) IRQ028_Handler(void)
- #define LCD_IRQHandler(void) IRQ029_Handler(void)
- #define EF_RAM_IRQHandler(void) IRQ030_Handler(void)
- #define CLKTRIM_IRQHandler(void) IRQ031_Handler(void)
- /******************************************************************************/
- /* Global type definitions ('typedef') */
- /******************************************************************************/
- /**
- ******************************************************************************
- ** \brief Level
- **
- ** Specifies levels.
- **
- ******************************************************************************/
- typedef enum en_level
- {
- DdlLow = 0u, ///< Low level '0'
- DdlHigh = 1u ///< High level '1'
- } en_level_t;
- /**
- ******************************************************************************
- ** \brief Generic Flag Code
- **
- ** Specifies flags.
- **
- ******************************************************************************/
- typedef enum en_flag
- {
- DdlClr = 0u, ///< Flag clr '0'
- DdlSet = 1u ///< Flag set '1'
- } en_stat_flag_t, en_irq_flag_t;
- /******************************************************************************/
- /* Global variable declarations ('extern', definition in C source) */
- /******************************************************************************/
- /******************************************************************************/
- /* Global function prototypes ('extern', definition in C source) */
- /******************************************************************************/
- /*******************************************************************************
- * Global function prototypes
- ******************************************************************************/
- extern void ddl_memclr(void* pu8Address, uint32_t u32Count);
- uint32_t Log2(uint32_t u32Val);
- /**
- *******************************************************************************
- ** This hook is part of wait loops.
- ******************************************************************************/
- extern void DDL_WAIT_LOOP_HOOK(void);
- void Debug_UartInit(void);
- void delay1ms(uint32_t u32Cnt);
- void delay100us(uint32_t u32Cnt);
- void delay10us(uint32_t u32Cnt);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DDL_H__ */
- /******************************************************************************/
- /* EOF (not truncated) */
- /******************************************************************************/
|