mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-21 12:59:04 +00:00
machine: do not expose RESET_MAGIC_VALUE
This is a constant for internal use only, but was (unintentionally?) exported. In addition, it doesn't follow the Go naming convention. This change simply renames the constant so that it is unexported.
This commit is contained in:
committed by
Ron Evans
parent
2409bbef69
commit
107b1c2906
@@ -8,7 +8,7 @@ import (
|
||||
)
|
||||
|
||||
// Definition for compatibility, but not used
|
||||
const RESET_MAGIC_VALUE = 0x00000000
|
||||
const resetMagicValue = 0x00000000
|
||||
|
||||
const (
|
||||
LED = PC18
|
||||
|
||||
Reference in New Issue
Block a user