gonzui


Format: Advanced Search

mtkernel_3/include/sys/sysdepend/iote_stm32l4/machine.hbare sourcepermlink (0.01 seconds)

Search this content:

    1: /*
    2:  *----------------------------------------------------------------------
    3:  *    micro T-Kernel 3.00.03
    4:  *
    5:  *    Copyright (C) 2006-2021 by Ken Sakamura.
    6:  *    This software is distributed under the T-License 2.2.
    7:  *----------------------------------------------------------------------
    8:  *
    9:  *    Released by TRON Forum(http://www.tron.org) at 2021/03/31.
   10:  *
   11:  *----------------------------------------------------------------------
   12:  */
   13: 
   14: /*
   15:  *      machine.h
   16:  *
   17:  *      Machine type definition (STM32L4 IoT-Engine depended)
   18:  */
   19: 
   20: #ifndef __SYS_SYSDEPEND_MACHINE_H__
   21: #define __SYS_SYSDEPEND_MACHINE_H__
   22: 
   23: /*
   24:  * [TYPE]_[CPU]         TARGET SYSTEM
   25:  * CPU_xxxx             CPU type
   26:  * CPU_CORE_xxx         CPU core type
   27:  */
   28: 
   29: /* ----- STM32L4 IoT-Engine (CPU: STM32L486VGT6) definition ----- */
   30: 
   31: #define IOTE_STM32L4            1         /* Target system   : STM32L4 IoT-Engine */
   32: #define CPU_STM32L4             1          /* Target CPU type : STM32L4 series */
   33: #define CPU_STM32L486           1                /* Target CPU      : STM32L486 */
   34: #define CPU_CORE_ARMV7M         1              /* Target CPU-Core type : ARMv7-M */
   35: #define CPU_CORE_ACM4F          1               /* Target CPU-Core      : ARM Cortex-M4F */
   36: 
   37: #define TARGET_DIR              iote_stm32l4        /* Sysdepend-Directory name */
   38: 
   39: /*
   40:  **** CPU-depeneded profile (STM32L4)
   41:  */
   42: #include "../cpu/stm32l4/machine.h"
   43: 
   44: 
   45: #endif /* __SYS_SYSDEPEND_MACHINE_H__ */