gonzui


Format: Advanced Search

mtkernel_3/kernel/sysdepend/iote_rza2m/power_save.cbare sourcepermlink (0.02 seconds)

Search this content:

    1: /*
    2:  *----------------------------------------------------------------------
    3:  *    micro T-Kernel 3.00.05
    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/11.
   10:  *
   11:  *----------------------------------------------------------------------
   12:  */
   13: 
   14: #include <sys/machine.h>
   15: #ifdef IOTE_RZA2M
   16: 
   17: #include <tk/tkernel.h>
   18: #include <kernel.h>
   19: 
   20: /*
   21:  *      power_save.c (RZ/A2M 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_RZA2M */