Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/board/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const MICROBIT_HAL_PIN_P7 = 7;
export const MICROBIT_HAL_PIN_P8 = 8;
export const MICROBIT_HAL_PIN_P9 = 9;
export const MICROBIT_HAL_PIN_P10 = 10;
export const MICROBIT_HAL_PIN_P11 = 12;
export const MICROBIT_HAL_PIN_P11 = 11
export const MICROBIT_HAL_PIN_P12 = 12;
export const MICROBIT_HAL_PIN_P13 = 13;
export const MICROBIT_HAL_PIN_P14 = 14;
Expand Down
2 changes: 1 addition & 1 deletion src/examples/sound_effects_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
duration=500,
vol_start=100,
vol_end=255,
wave=audio.SoundEffect.WAVEFORM_TRIANGLE,
waveform=audio.SoundEffect.WAVEFORM_TRIANGLE,
fx=audio.SoundEffect.FX_VIBRATO,
shape=audio.SoundEffect.SHAPE_LOG,
)
Expand Down
4 changes: 3 additions & 1 deletion src/mpconfigport.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@
#define MICROPY_ENABLE_SCHEDULER (1)

// Fine control over Python builtins, classes, modules, etc
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
#define MICROPY_PY_BUILTINS_FROZENSET (1)
#define MICROPY_PY_BUILTINS_INPUT (1)
#define MICROPY_PY_BUILTINS_HELP (1)
#define MICROPY_PY_BUILTINS_HELP_TEXT microbit_help_text
Expand Down Expand Up @@ -100,7 +102,7 @@
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
#endif

#define MICROBIT_RELEASE "2.1.0"
#define MICROBIT_RELEASE "2.1.1"
#define MICROBIT_BOARD_NAME "micro:bit"
#define MICROPY_HW_BOARD_NAME MICROBIT_BOARD_NAME " v" MICROBIT_RELEASE
#define MICROPY_HW_MCU_NAME "nRF52833"
Expand Down