Attention to Internet Explorer users: ROHM website does not recommend browsing in IE 11. Please use latest browser to ensure the best performance on ROHM website.
The sprintf function executes the floating point type conversion processing, which results in increase of size. If the floating point type conversion is not executed, add the dummy function _Ldtob() to C source as shown below to compress the code size. Example) #include <stdio.h> char buf[32]; void main(void) { sprintf(buf, "test"); }
void _Ldtob(void *p, char code){} // Dummy function for code size reduction