problem in mini pro

Hello.
My friend give to me arduino mini pro, because him is very low in programming.
I get problem, after compile & upload to mini pro (mega328f), i dont see in debug any result from him.

If possible test my sketch in others mini pro and write, your mini pro write to console or not ?

I sin on marriage mini pro

Thanks.

my test sketch

void setup()
{
  Serial.begin(9600);       // for debugging
  Serial.println(F("init."));
}

void loop()
{
  char linebu1f[128];
  int charcount=0;
  boolean authentificated=false;
  char urlbuf[128];
}

Does the serial monitor line speed match?
Your "loop()" code is completely pointless.

AWOL:
Your "loop()" code is completely pointless.

:smiley:

xfileslv:
I get problem, after compile & upload to mini pro (mega328f), i dont see in debug any result from him.

Do you have IDE settings correct?
Tools -> Board -> Arduino Pro or Pro Mini
Tools -> Processor -> ATmega??? (?V, ?Mhz)
Tools -> Port -> ? (Do you use a FTDI breakout or something else?)

The code

Serial.begin(some speed);
Serial.println(F("some text"));
while(1);

is sufficient to test the output on serial console monitor.

Also you may try modify Blinking example (e.g 250ms delay) to test if upload really works.