| 1 | // port specific settings\r |
| 2 | \r |
| 3 | #ifndef PORT_CONFIG_H\r |
| 4 | #define PORT_CONFIG_H\r |
| 5 | \r |
| 6 | // draw2.c\r |
| 7 | #define START_ROW 0 // which row of tiles to start rendering at?\r |
| 8 | #define END_ROW 28 // ..end\r |
| 9 | \r |
| 10 | // pico.c\r |
| 11 | #define CAN_HANDLE_240_LINES 0 // fow now\r |
| 12 | \r |
| 13 | //#define dprintf(f,...) printf(f"\n",##__VA_ARGS__)\r |
| 14 | #ifdef __DEBUG_PRINT\r |
| 15 | #ifdef __cplusplus\r |
| 16 | extern "C"\r |
| 17 | #endif\r |
| 18 | void dprintf(char *format, ...);\r |
| 19 | #else\r |
| 20 | #define dprintf(x...)\r |
| 21 | #endif\r |
| 22 | \r |
| 23 | #endif //PORT_CONFIG_H\r |