LGT8F328 is a new board which I'm playing with, managed to install it and make it work in Arduino IDE with this link:
I ran the blink program and it blinks...
The variants are these:
Checking with B4R, blink program, the code is
I found the board but the models are not the same:
Running with any of them I get the same error:
Searching the forum I found one similar case without solution.
Advise please ?
Installation
Board Package for Logic Green LGT8F328P LGT8F328D and LGT8F88D - dbuezas/lgt8fx
github.com
The variants are these:
Checking with B4R, blink program, the code is
B4X:
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public Serial1 As Serial
Private tmr As Timer
Private pin13 As Pin
Private state As Boolean = False
End Sub
Private Sub AppStart
Serial1.Initialize(115200)
Log("AppStart")
tmr.Initialize("tmr_Tick",1000)
pin13.Initialize(13,pin13.MODE_OUTPUT)
tmr.Enabled = True
End Sub
Sub tmr_Tick
state = Not(state)
pin13.DigitalWrite(state)
Log(state)
End Sub
I found the board but the models are not the same:
Running with any of them I get the same error:
Compiling & deploying Ino project (LGT8F328 - COM7) Error
Error: Must specify exactly one sketch file
Searching the forum I found one similar case without solution.
Advise please ?