Skip to content

Case change and and 'none' reset option for Digistump Oak #4143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 15, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions tools/boards.txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# opts: specific entries dicts (overrides same entry in macros)
# macro: common entries
# unmodifiable parameters:
# resetmethod_ck/_nodemcu: fixed reset method
# resetmethod_ck/_nodemcu/_none: fixed reset method
# flashmode_qio/_dio/_qout/_dout: fixed flash mode
# flashfreq_40/_80: fixed flash frequency
# selection menu:
Expand Down Expand Up @@ -689,14 +689,14 @@
],
}),
( 'oak', {
'name': 'DigiStump Oak',
'name': 'Digistump Oak',
'opts': {
'.build.board': 'ESP8266_OAK',
'.build.variant': 'oak',
'.upload.maximum_size': '1040368',
},
'macro': [
'resetmethod_ck',
'resetmethod_none',
'flashmode_dio',
'flashfreq_40',
'4M',
Expand Down Expand Up @@ -776,7 +776,11 @@
'resetmethod_nodemcu': collections.OrderedDict([
( '.upload.resetmethod', 'nodemcu' ),
]),


'resetmethod_none': collections.OrderedDict([
( '.upload.resetmethod', 'none' ),
]),

####################### menu.FlashMode

'flashmode_menu': collections.OrderedDict([
Expand Down