gonzui


Format: Advanced Search

mtkernel_3/kernel/sysdepend/iote_m367/power_save.cbare sourcepermlink (0.00 seconds)

Search this content:

    1: /*
    2:  *----------------------------------------------------------------------
    3:  *    micro T-Kernel 3.00.01
    4:  *
    5:  *    Copyright (C) 2006-2020 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 2020/05/29.
   10:  *
   11:  *----------------------------------------------------------------------
   12:  */
   13: 
   14: #include <tk/tkernel.h>
   15: #include <kernel.h>
   16: 
   17: #ifdef IOTE_M367
   18: 
   19: /*
   20:  *      power_save.c (M367 IoT-Engine)
   21:  *      Power-Saving Function
   22:  */
   23: 
   24: #include "sysdepend.h"
   25: 
   26: /*
   27:  * Switch to power-saving mode
   28:  */
   29: EXPORT void low_pow( void )
   30: {
   31: }
   32: 
   33: /*
   34:  * Move to suspend mode
   35:  */
   36: EXPORT void off_pow( void )
   37: {
   38: }
   39: 
   40: 
   41: #endif /* IOTE_M367 */