OSDN Git Service

[SCHEMATIC] Modify SW/MW/LW Preamp, insert galbanic-isolator replace of common-mode...
[openi2cradio/OpenI2CRadio.git] / power.h
1 /*
2  * OpenI2CRADIO
3  * Power on managing.
4  * Copyright (C) 2013-06-10 K.Ohta <whatisthis.sowhat ai gmail.com>
5  * License: GPL2+LE
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2,
10  *  or (at your option) any later version.
11  *  This library / program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this library; see the file COPYING. If not, write to the
18  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19  *  MA 02110-1301, USA.
20  *
21  *  As a special exception, if you link this(includeed from sdcc) library
22  *  with other files, some of which are compiled with SDCC,
23  *  to produce an executable, this library does not by itself cause
24  *  the resulting executable to be covered by the GNU General Public License.
25  *  This exception does not however invalidate any other reasons why
26  *  the executable file might be covered by the GNU General Public License.
27  */
28
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #ifdef __SDCC
34 #include <sdcc-lib.h>
35 #include <pic18fregs.h> /* ONLY FOR PIC18x */
36 #include <delay.h>
37 #else
38 #include <xc.h>
39 #endif
40 #include <signal.h>
41
42 #include "iodef.h"
43 #include "idle.h"
44 #include "i2c_io.h"
45 #include "akc6955.h"
46 #include "lcd_acm1602.h"
47 #include "ui.h"
48 #include "eeprom.h"
49 #include "ioports.h"
50 //#include "menu.h"
51
52 #ifndef POWER_H
53 #define POWER_H
54
55 #ifdef  __cplusplus
56 extern "C" {
57 #endif
58
59 #ifdef __SDCC
60 //#define _POWER_DELAY() delay1ktcy(2*8) // 2ms
61 #define _POWER_DELAY() idle_time_ms(2) // 2ms
62 #else
63 //#define _POWER_DELAY() __delay_ms(2)
64 #define _POWER_DELAY() idle_time_ms(2) // 2ms
65 #endif
66
67
68     enum {
69         RESET_POR = 0,
70         RESET_BOR,
71         RESET_MCLR,
72         RESET_WDT,
73         RESET_STACK_FULL,
74         RESET_STACK_UNDER,
75         RESET_SOFTWARE,
76         RESET_POWERDOWN,
77         RESET_INTEXIT
78     };
79     extern unsigned char chk_reset(void);
80     extern void rfamp_power(unsigned char b);
81     extern void power_on_inthook(void);
82     extern void power_on(unsigned char f);
83     extern unsigned char chk_powerbutton(void);
84     extern void power_off(unsigned char save);
85     extern void shutdown(unsigned char save);
86
87 #ifdef  __cplusplus
88 }
89 #endif
90
91 #endif  /* POWER_H */
92