Subversion Repositories freemyipod

Rev

Rev 846 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 846 Rev 847
Line 113... Line 113...
113
int read_input_mw(int input)
113
int read_input_mw(int input)
114
{
114
{
115
    return -1;
115
    return -1;
116
}
116
}
117
 
117
 
118
enum input_state read_battery_state(int input)
118
enum input_state read_input_state(int input)
119
{
119
{
120
    if (input != 0) return INPUT_STATE_INVALID;
120
    if (input != 0) return INPUT_STATE_INVALID;
121
    return INPUT_STATE_UNKNOWN;
121
    return INPUT_STATE_UNKNOWN;
122
}
-
 
123
122
}
-
 
123