sadekbaroudi / zmk-fingerpunch-controllers

2 stars 0 forks source link

Can't find board 'svlinky' #1

Closed antskelton42 closed 3 months ago

antskelton42 commented 3 months ago

I cloned the zmk-ardux (https://github.com/arduxio/zmk-ardux) repo to use as my zmk-config and updated the config/west.yml as directed:

manifest:
  remotes:
    - name: zmkfirmware
      url-base: https://github.com/zmkfirmware
    - name: zmk-ardux
      url-base: https://github.com/arduxio
    - name: sadekbaroudi
      url-base: https://github.com/sadekbaroudi
  projects:
    - name: zmk
      remote: zmkfirmware
      revision: 8c6bda260ace119b3c22a21bdcdd6d17a83fc5eb
      import: app/west.yml
    - name: zmk-fingerpunch-controllers
      remote: sadekbaroudi
      revision: main
      import: config/deps.yml
  self:
    path: config

when I try to build, the board is not recognised:

 west build --pristine -b svlinky -- -DSHIELD=the_paintbrush_left -DZMK_CONFIG="/workspaces/zmk-config/config"

image

sadekbaroudi commented 3 months ago

Hi there @antskelton42 !

Take a look at the example for local builds here: https://github.com/sadekbaroudi/zmk-fingerpunch-keyboards?tab=readme-ov-file#local-builds

If building locally, you need to clone my zmk-fingerpunch-controllers repo (and maybe even the zmk-fingerpunch-vik repo), and make sure that you reference them as modules in your build string.

For example... Assuming you cloned them to /workspaces/zmk-fingerpunch-controllers and /workspaces/zmk-fingerpunch-vik

west build --pristine -b svlinky -- -DSHIELD=the_paintbrush_left -DZMK_CONFIG="/workspaces/zmk-config/config" -DZMK_EXTRA_MODULES='/workspaces/zmk-fingerpunch-controllers;/workspaces/zmk-fingerpunch-vik
antskelton42 commented 3 months ago

Thanks for the help! I was able to build the image.

sadekbaroudi commented 3 months ago

@antskelton42 - I saw your comment before you edited. Were you able to unbrick? If not, I can help!

antskelton42 commented 3 months ago

I was! Thank you.