I came accros this line of code:
#define BWAKUP ('w' << 8)
What does it do? Its the same as:
#define BWAKUP (167000)
In addition, another definition as :
#define CWAKUP (1 + BWAKUP)
is equivalent to :
#define CWAKUP (356000)
Right ?