1
0
Fork 0

Cozykeys Speedo Configurator fix (#11058)

* Cozykeys Speedo Configurator fix

Outgoing codebase worked when compiled locally, but not from QMK Configurator because its API requires an exact directory structure.

* fix make commands in the readme
This commit is contained in:
James Young 2020-11-28 16:59:25 -08:00 committed by GitHub
parent c66df16644
commit 81164c1663
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 6 deletions

View file

@ -8,11 +8,13 @@
Make example for this keyboard (after setting up your build environment):
make speedo:default
make cozykeys/speedo/v2:default # for Speedo v2
make cozykeys/speedo/v3:default # for Speedo v3
Flashing example for this keyboard:
make speedo:default:flash
make cozykeys/speedo/v2:default:flash # for Speedo v2
make cozykeys/speedo/v3:default:flash # for Speedo v3
See the
[build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and

View file

@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#ifdef KEYBOARD_cozykeys_speedo_v2
#include "speedo_v2.h"
#include "v2.h"
#elif KEYBOARD_cozykeys_speedo_v3
#include "speedo_v3.h"
#include "v3.h"
#endif

View file

@ -14,4 +14,4 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "speedo_v2.h"
#include "v2.h"

View file

@ -14,4 +14,4 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "speedo_v3.h"
#include "v3.h"