mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +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
@@ -4,7 +4,7 @@
|
||||
package machine
|
||||
|
||||
// used to reset into bootloader
|
||||
const RESET_MAGIC_VALUE = 0xf01669ef
|
||||
const resetMagicValue = 0xf01669ef
|
||||
|
||||
// GPIO Pins
|
||||
const (
|
||||
|
||||
Reference in New Issue
Block a user