Skip to content

Commit

Permalink
Fix device name, bump version to 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin committed Dec 4, 2024
1 parent 82a7a02 commit 6b7ba47
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CONFIG_BT_DIS_MODEL="Omi DevKit 2"
CONFIG_BT_DIS_MANUF="Based Hardware"
CONFIG_BT_DIS_FW_REV=y
CONFIG_BT_DIS_HW_REV=y
CONFIG_BT_DIS_FW_REV_STR="2.0.6"
CONFIG_BT_DIS_FW_REV_STR="2.0.7"
CONFIG_BT_DIS_HW_REV_STR="Seeed Xiao BLE Sense"

#
Expand Down
2 changes: 1 addition & 1 deletion Friend/firmware/firmware_v1.0/src/transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#include "utils.h"
// #include "nfc.h"
#include "speaker.h"
#include "button.h"
#include "sdcard.h"
#include "storage.h"
#include "button.h"
#include "mic.h"
#include "lib/battery/battery.h"
// #include "friend.h"
LOG_MODULE_REGISTER(transport, CONFIG_LOG_DEFAULT_LEVEL);
Expand Down
4 changes: 2 additions & 2 deletions app/lib/pages/home/firmware_update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ class _FirmwareUpdateState extends State<FirmwareUpdate> with FirmwareMixin {
children: [
const Text('Firmware Updated Successfully'),
const SizedBox(height: 10),
const Text(
'Please restart the Friend device to complete the update',
Text(
'Please restart your ${widget.device?.name ?? "Omi device"} to complete the update',
textAlign: TextAlign.center,
),
const SizedBox(height: 20),
Expand Down

0 comments on commit 6b7ba47

Please sign in to comment.