12 lines
267 B
C
12 lines
267 B
C
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
#define DISPLAY_WIDTH 40
|
|
#define DISPLAY_HEIGHT 16
|
|
#define FRAME_TIMEOUT 5000 /* ms */
|
|
#define UDP_PORT 2323
|
|
#define FRAMERATE 20 /* fps */
|
|
#define TEXT_LOOP_COUNT 3
|
|
#define TEXT_SCROLL_SPEED 3
|
|
|
|
#endif//__CONFIG_H__
|