From cec0081bd4c3e4e2b5147a517d0014b826725c81 Mon Sep 17 00:00:00 2001 From: Dave Date: Sun, 4 Dec 2022 10:11:49 -0600 Subject: [PATCH] Update readme --- firmware/asdf/README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/firmware/asdf/README.md b/firmware/asdf/README.md index e646cf9..ca25ede 100644 --- a/firmware/asdf/README.md +++ b/firmware/asdf/README.md @@ -76,7 +76,19 @@ Download the latest release of the firmware [here](https://osiweb.github.io/unif ### Changing project name and version number. - Edit the file "CMakeLists.txt" -- You will see a "project" section near the beginning of the file. You can change the project name from "asdf" to whatever you like, and change the version number as you see fit. These values will be used to name the resulting hex files, and also to name the download links in the GitHub page, if you choose to create one. +- You will see a "project" section near the beginning of the file. + + project("asdf" + VERSION 1.6.3 + DESCRIPTION "A customizable keyboard matrix controller for retrocomputers" + LANGUAGES C) + +- You can change the project name from "asdf" to whatever you like, and change the version number as you see fit. These values will be used to name the resulting hex files, and also to name the download links in the GitHub page, if you choose to create one. + + project("my-keyboard" + VERSION 1.0 + DESCRIPTION "My customized keyboard firmware" + LANGUAGES C) ### building using github actions: