mtkernel_3/kernel/sysdepend/iote_stm32l4/power_save.c | bare source | permlink (0.00 seconds) |
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: #include <sys/machine.h> 15: #ifdef IOTE_STM32L4 16: 17: #include <tk/tkernel.h> 18: #include <kernel.h> 19: 20: /* 21: * power_save.c (STM32L4 IoT-Engine) 22: * Power-Saving Function 23: */ 24: 25: #include "sysdepend.h" 26: 27: /* 28: * Switch to power-saving mode 29: */ 30: EXPORT void low_pow( void ) 31: { 32: } 33: 34: /* 35: * Move to suspend mode 36: */ 37: EXPORT void off_pow( void ) 38: { 39: } 40: 41: 42: #endif /* IOTE_STM32L4 */