Jump to content

Migration error with [code] tags (phpBB)


DamonT

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...