Set up embedded dev environment using PlatformIO

This commit is contained in:
2023-03-15 01:31:12 +01:00
parent d872172bc6
commit 30a5cd3ad7
4 changed files with 16 additions and 0 deletions

View File

@@ -34,3 +34,10 @@
;; Keybindings for citar
(map! :leader :n "n B" #'citar-open-files
:desc "Open associated PDF with bibliography entry")
;; Keybindings for PlatformIO
(map! :after platformio-mode
:map platformio-mode-map
(:leader
:desc "Compile the project" "c c" #'platformio-build
:desc "Upload the project" "c u" #'platformio-upload
:desc "Monitor the serial console" "c m" #'platformio-device-monitor))