include config.h properly

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@103 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-04-16 14:02:26 +00:00
parent bde61f2206
commit 439b187d42
5 changed files with 17 additions and 3 deletions

View file

@ -1,6 +1,10 @@
// /*
// Character generation tables * Character generation tables
// */
#include "config.h"
#ifdef HAVE_LCD_BITMAP
const unsigned char char_gen_6x8[][5][1] = const unsigned char char_gen_6x8[][5][1] =
{ {
@ -301,3 +305,5 @@ const unsigned char char_gen_12x16[][11][2] =
0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00, 0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x0c,0x00,0x18,0x00,0x10,0x00,0x18,0x00,0x0c,0x00,0x04,0x00,0x00,0x00,
0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00, 0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0xff,0x3f,0x00,0x00,
}; };
#endif /* HAVE_LCD_BITMAP */

View file

@ -17,6 +17,8 @@
* *
****************************************************************************/ ****************************************************************************/
#include "config.h"
#include "lcd.h" #include "lcd.h"
void lcd_data (int data) void lcd_data (int data)

View file

@ -17,6 +17,8 @@
* *
****************************************************************************/ ****************************************************************************/
#include "config.h"
#include <led.h> #include <led.h>
#define turn_on() \ #define turn_on() \

View file

@ -17,6 +17,8 @@
* *
****************************************************************************/ ****************************************************************************/
#include "config.h"
#include <serial.h> #include <serial.h>
#include <lcd.h> #include <lcd.h>

View file

@ -17,6 +17,8 @@
* *
****************************************************************************/ ****************************************************************************/
#include "config.h"
#include <lcd.h> #include <lcd.h>
#include <led.h> #include <led.h>