diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml index d6179f0..fd44a82 100644 --- a/config/_default/languages.en.toml +++ b/config/_default/languages.en.toml @@ -3,12 +3,11 @@ title = "Elara's Site" #description = "My awesome website" copyright = "Copyright © Elara Musayelyan" -dateFormat = "January 2, 2006" - [languages.en.params] languageCode = "en" languageName = "English" displayName = "EN" + dateFormat = "January 2, 2006" isoCode = "en" weight = 1 rtl = false diff --git a/config/_default/params.toml b/config/_default/params.toml index 5a7f92f..6283b14 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -42,7 +42,7 @@ enableCodeCopy = true invertPagination = false showReadingTime = true showTableOfContents = true - showTaxonomies = false + showTaxonomies = true showWordCount = false showComments = false # sharingLinks = ["facebook", "twitter", "pinterest", "reddit", "linkedin", "email"] @@ -52,6 +52,7 @@ enableCodeCopy = true showSummary = true showTableOfContents = false groupByYear = false + showTaxonomies = true [sitemap] excludedKinds = ["taxonomy", "term"] diff --git a/content/articles/nordic-dfu-ble.md b/content/articles/nordic-dfu-ble.md index 9dcb652..1a00800 100644 --- a/content/articles/nordic-dfu-ble.md +++ b/content/articles/nordic-dfu-ble.md @@ -2,7 +2,7 @@ title = "Nordic DFU over BLE" date = "2023-07-14" summary = "Using Nordic Semiconductor's DFU protocol over Bluetooth Low Energy" -weight = 20 +tags = ["pinetime", "ble", "itd"] +++ I maintain a project called [ITD](https://gitea.elara.ws/Elara6331/itd), a companion app for Pine64's [PineTime](https://www.pine64.org/pinetime/) smartwatch. The PineTime uses a Nordic nRF52832 SoC and implements the Nordic DFU protocol. I found the documentation for this protocol on Nordic's site to be severely lacking and had to resort to digging through source code to implement it properly. In this article, I'll explain exactly how to upgrade your firmware over BLE using the information that I've learned. @@ -67,4 +67,4 @@ First, write `[0x04]` to the control point. This tells your device to validate t Once the firmware is successfully validated, write `[0x05]` to the control point, which tells your device to activate the new firmware and reset. -That's it! Your device should reboot running the new firmware. Some firmware (such as InfiniTime for the PineTime) requires you to manually validate the firmware in their settings or they'll revert on the next reboot, so make sure to remember to do that if your device requires it. \ No newline at end of file +That's it! Your device should reboot running the new firmware. Some firmware (such as InfiniTime for the PineTime) requires you to manually validate the firmware in their settings or they'll revert on the next reboot, so make sure to remember to do that if your device requires it.