Skip to content

Commit

Permalink
Make Raspberry Pi Pico the default MCU type
Browse files Browse the repository at this point in the history
  • Loading branch information
veikman authored and Viktor Eikman committed Nov 1, 2023
1 parent 6062d37 commit b006cc6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ version 0.2.0, thus covering only a fraction of the project’s history.

## [Unreleased]
### Changed
- The default type of microcontroller has changed, from `promicro` to
`rpi-pico`.
- Modified the design of keycaps on the Concertina, using and matching
the full set of caps bundled with `dmote-keycap` v0.8.0.
- The port type `custom` has been renamed to `custom-cuboid`.
Expand All @@ -19,6 +21,8 @@ version 0.2.0, thus covering only a fraction of the project’s history.
- Added a `kailh.yaml` file for PG1511-style switches on a
Concertina.
- Added an `encoder` folder for rotary encoders on a Concertina.
- Conical tops for the bosses of heat-set inserts. This is intended to prevent
slicing software from adding support material inside the hollows.

### Fixed
- Fixed problems related to keycap size by upgrading to v0.8.0 of the
Expand Down
2 changes: 1 addition & 1 deletion config/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ flanges:
size: [4, 1]
intrinsic-offset: [0, 0, -6]
mcu:
type: promicro
type: rpi-pico
support:
lock:
width-factor: 0.45
Expand Down
1 change: 1 addition & 0 deletions doc/options-main.md
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ A code name for a form factor. The following values are supported, representing
* `elite-c`: Elite-C.
* `promicro`: Pro Micro.
* `proton-c`: Proton C.
* `rpi-pico`: Raspberry Pi Pico.
* `teensy-l`: Teensy++ 2.0.
* `teensy-m`: Medium-size Teensy, 3.2 or LC.
* `teensy-s`: Teensy 2.0.
Expand Down
2 changes: 1 addition & 1 deletion src/dactyl_keyboard/param/tree/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@
{:default :auto :parse-fn keyword :validate [::valid/body]}
"A code identifying the [body](configuration.md) that houses the MCU."]
[[:mcu :type]
{:default :promicro :parse-fn keyword
{:default :rpi-pico :parse-fn keyword
:validate [(partial contains? cots/mcu-facts)]}
"A code name for a form factor. "
"The following values are supported, representing a selection of "
Expand Down

0 comments on commit b006cc6

Please sign in to comment.