Skip to content

Commit

Permalink
Cozykeys Speedo Configurator fix (qmk#11058)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
noroadsleft authored Nov 29, 2020
1 parent c66df16 commit 81164c1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions keyboards/cozykeys/speedo/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions keyboards/cozykeys/speedo/speedo.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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"
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
File renamed without changes.

0 comments on commit 81164c1

Please sign in to comment.