/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: edam
  • Date: 2012-02-28 16:50:26 UTC
  • Revision ID: edam@waxworlds.org-20120228165026-pwnwo300xx2e2kg6
removed ulibc, fixed button, added text rendering

Show diffs side-by-side

added added

removed removed

35
35
// rotate display (in segments)
36
36
#define CLOCK_SHIFT ( 58 * NUM_SECOND_SEGMENTS - 1 )
37
37
 
 
38
// multiply font width
 
39
#define TEXT_SCALE 3
 
40
 
 
41
// the proportion of the display to use (in segments)
 
42
#define TEXT_DISPLAY_SEGMENTS ( NUM_SEGMENTS * 2 / 3 )
 
43
 
 
44
// scrolly text speed (segments per second)
 
45
#define TEXT_SCROLL_SPEED ( 15 * NUM_SECOND_SEGMENTS )
 
46
 
38
47
 
39
48
#endif //_CONFIG_H_