Skip to content

Commit

Permalink
Defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed Jun 2, 2024
1 parent 75af278 commit da1416e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/raw-viewer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ var lcd *C.st7789_t
var touchScreen *C.cst816s_t
var pins *C.pins_t

var allowScreenSwipes bool
var allowScreenSwipes bool = true
var screenTextureID imgui.TextureID
var screenMouseDownPos imgui.Vec2
var screenDidSwipe bool
Expand Down Expand Up @@ -609,7 +609,8 @@ func main() {
}
imgui.End()

imgui.SetNextWindowPosV(imgui.Vec2{X: 20, Y: 350}, imgui.ConditionOnce, imgui.Vec2{})
imgui.SetNextWindowPosV(imgui.Vec2{X: 20, Y: 500}, imgui.ConditionOnce, imgui.Vec2{})
imgui.SetNextWindowSizeV(imgui.Vec2{X: 500, Y: 300}, imgui.ConditionOnce)
if imgui.BeginV("FreeRTOS", nil, 0) {
freeHeap := freertosFreeBytesRemaining.Read()

Expand Down

0 comments on commit da1416e

Please sign in to comment.