i had some weird 'side effects' when trying to progam my first 'hello world application' with EasyCE 1.5 . Some variables got changed without me touching them ! I debugged a little bit and encountered the following problem:
The redir-table in the EasyCE-function initcharset() is a char-array. When your compiler uses char as signed char you will get negative indices when performing 'for ( i = 0; i < 57; i++ ) m_transl[c[i]] = i;' because of some characters that have a set d7-bit (for example 'ö') !
To solve the problem you should write 'byte c[]...' instead of 'char c[]...' in the same function.
Any comments or suggestions ?
BTW very easy tool, i like it

greetings
--Henrik