power_drv.c

Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 //_____ I N C L U D E S ____________________________________________________
00018 
00019 #include "config.h"
00020 #include "power_drv.h"
00021 
00022 //_____ M A C R O S ________________________________________________________
00023 
00024 //_____ D E C L A R A T I O N ______________________________________________
00025 
00034 void set_power_down_mode(void)
00035 {
00036    Setup_power_down_mode();
00037    Sleep_instruction();
00038 }
00039 
00040 
00041 
00050 void set_idle_mode(void)
00051 {
00052    Setup_idle_mode();
00053    Sleep_instruction();
00054 }
00055 
00064 void set_adc_noise_reduction_mode(void)
00065 {
00066    Setup_adc_noise_reduction_mode();
00067    Sleep_instruction();
00068 }
00069 
00078 void set_power_save_mode(void)
00079 {
00080    Setup_power_save_mode();
00081    Sleep_instruction();
00082 }
00083 
00092 void set_standby_mode(void)
00093 {
00094    Setup_standby_mode();
00095    Sleep_instruction();
00096 }
00097 
00106 void set_ext_standby_mode(void)
00107 {
00108    Setup_ext_standby_mode();
00109    Sleep_instruction();
00110 }

Generated on Fri Jun 15 14:15:32 2007 for Atmel by  doxygen 1.5.1-p1