B4R Question Why my log panel don't show my logs ?

vali khandangoll

Active Member
Why my log panel don't show my logs ?
1684527388443.jpeg
 

candide

Active Member
Licensed User
possible a Delay(100) is needed between Serial1.Initialize(115200) and Log("AppStart")

also can you add after log("AppStart") a loop of 100ms with a log("something") at each loop ? (just to see if next messages are seen )
 
Upvote 0

vali khandangoll

Active Member
Tip: Tip: Getting rid of the excessive compiler logs

1. Try to restart the board after you run the program. It sometimes helps.
2. Make sure that the baud rate in the board selector dialog is correct (115200).
3. Are you able to read the logs with Arduino IDE?
Hi
I did your 1 and 2 solution but My problem was not solved.
and about your no3 answer: my IDE do not show to.
IDE show like this x⸮x⸮xxx⸮x⸮⸮x
 
Upvote 0

peacemaker

Expert
Licensed User
Longtime User
Try
B4X:
Serial1.Initialize(your_board_baud_rate)
Delay(100)
Log(CRLF, "AppStart")
 
Upvote 0
Top