Minor changes and fix HAVE_LCD_FLIP
[kugel-rb.git] / uisimulator / common / stubs.c
blobd4a9af126cd53d1ff0454b752aacba486690dc0b
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Björn Stenberg <bjorn@haxx.se>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include <stdio.h>
22 #include <time.h>
23 #include <stdbool.h>
24 #include "thread-sdl.h"
26 #include "debug.h"
28 #include "screens.h"
29 #include "button.h"
31 #include "string.h"
32 #include "lcd.h"
34 #include "power.h"
36 #include "ata.h" /* for volume definitions */
38 extern char having_new_lcd;
39 static bool storage_spinning = false;
41 #if CONFIG_CODEC != SWCODEC
42 void audio_set_buffer_margin(int seconds)
44 (void)seconds;
46 #endif
48 int fat_startsector(void)
50 return 63;
53 bool fat_ismounted(int volume)
55 (void)volume;
56 return true;
59 int storage_init(void)
61 return 1;
64 int storage_write_sectors(IF_MV2(int drive,)
65 unsigned long start,
66 int count,
67 const void* buf)
69 IF_MV((void)drive;)
70 int i;
72 for (i=0; i<count; i++ ) {
73 FILE* f;
74 char name[32];
76 sprintf(name,"sector%lX.bin",start+i);
77 f=fopen(name,"wb");
78 if (f) {
79 fwrite(buf,512,1,f);
80 fclose(f);
83 return 1;
86 int storage_read_sectors(IF_MV2(int drive,)
87 unsigned long start,
88 int count,
89 void* buf)
91 IF_MV((void)drive;)
92 int i;
94 for (i=0; i<count; i++ ) {
95 FILE* f;
96 char name[32];
98 DEBUGF("Reading sector %lX\n",start+i);
99 sprintf(name,"sector%lX.bin",start+i);
100 f=fopen(name,"rb");
101 if (f) {
102 fread(buf,512,1,f);
103 fclose(f);
106 return 1;
109 void storage_spin(void)
111 storage_spinning = true;
114 void storage_sleep(void)
118 bool storage_disk_is_active(void)
120 return storage_spinning;
123 void storage_spindown(int s)
125 (void)s;
126 storage_spinning = false;
129 void rtc_init(void)
133 int rtc_read(int address)
135 return address ^ 0x55;
138 int rtc_write(int address, int value)
140 (void)address;
141 (void)value;
142 return 0;
145 int rtc_read_datetime(struct tm *tm)
147 time_t now = time(NULL);
148 *tm = *localtime(&now);
150 return 0;
153 int rtc_write_datetime(const struct tm *tm)
155 (void)tm;
156 return 0;
159 #ifdef HAVE_RTC_ALARM
160 void rtc_get_alarm(int *h, int *m)
162 *h = 11;
163 *m = 55;
166 void rtc_set_alarm(int h, int m)
168 (void)h;
169 (void)m;
172 bool rtc_enable_alarm(bool enable)
174 return enable;
177 extern bool sim_alarm_wakeup;
178 bool rtc_check_alarm_started(bool release_alarm)
180 (void)release_alarm;
181 return sim_alarm_wakeup;
184 bool rtc_check_alarm_flag(void)
186 return true;
188 #endif
190 #ifdef HAVE_HEADPHONE_DETECTION
191 bool headphones_inserted(void)
193 return true;
195 #endif
197 #ifdef HAVE_SPDIF_POWER
198 void spdif_power_enable(bool on)
200 (void)on;
203 bool spdif_powered(void)
205 return false;
207 #endif
209 bool is_new_player(void)
211 return having_new_lcd;
214 #ifdef HAVE_USB_POWER
215 bool usb_powered(void)
217 return false;
220 bool usb_charging_enable(bool on)
222 (void)on;
223 return false;
225 #endif
227 #if CONFIG_CHARGING
228 bool charger_inserted(void)
230 return false;
233 bool power_input_present(void)
235 return false;
238 unsigned int power_input_status(void)
240 #ifdef HAVE_BATTERY_SWITCH
241 return POWER_INPUT_BATTERY;
242 #else
243 return POWER_INPUT_NONE;
244 #endif
247 bool charging_state(void)
249 return false;
251 #endif /* CONFIG_CHARGING */
253 #ifndef USB_NONE
254 bool usb_inserted(void)
256 return false;
258 #endif
260 #ifdef HAVE_REMOTE_LCD_TICKING
261 void lcd_remote_emireduce(bool state)
263 (void)state;
265 #endif
267 void lcd_set_contrast( int x )
269 (void)x;
272 void lcd_init_device(void)
276 void mpeg_set_pitch(int pitch)
278 (void)pitch;
281 static int sleeptime;
282 void set_sleep_timer(int seconds)
284 sleeptime = seconds;
287 int get_sleep_timer(void)
289 return sleeptime;
292 #ifdef HAVE_LCD_CHARCELLS
293 void lcd_clearrect (int x, int y, int nx, int ny)
295 /* Reprint char if you want to change anything */
296 (void)x;
297 (void)y;
298 (void)nx;
299 (void)ny;
302 void lcd_fillrect (int x, int y, int nx, int ny)
304 /* Reprint char if you want to change display anything */
305 (void)x;
306 (void)y;
307 (void)nx;
308 (void)ny;
310 #endif
312 void cpu_sleep(bool enabled)
314 (void)enabled;
317 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
318 void touchpad_set_sensitivity(int level)
320 (void)level;
322 #endif