DamonT Posted August 3, 2018 Share Posted August 3, 2018 Hi, I have a problem during the conversion (from phpBB) if there is code tag in post. Example, original post: #include <avr/io.h> #define F_CPU 16000000 #include <avr/interrupt.h> After migration (and rebuilding): #include #define F_CPU 16000000 #include Another example: TCCR0 = (1<<WGM01) | (1<<CS01); //test TIMSK = (1<<OCIE0) | (1<<TOIE0); //test sei(); After migration: TCCR0 = (1< TIMSK = (1< sei(); Another example: for(;;) After migration: for(; How can I prevent such situation? Link to comment Share on other sites More sharing options...
DamonT Posted August 11, 2018 Author Share Posted August 11, 2018 Everything works great now. It was bug in converter (fixed by IPB now). Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.