• 1 Post
  • 13 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • I’ve actually got all the code to work now except the joystick part, which is the biggest (new) part for me for this keeb. I’ve been on the QMK discord (that’s how I knew to update QMK to resolve QK_BOOT haha, although I’m not entirely sure the combo works…) What do you mean read the joystick input pins once per scan instead of in every if statement?

    edit: yeah config_common is deprecated according to the QMK discord. very unfortunately I actually have no idea what I’m doing with QMK/C++ code (esp the joystick part) in general and have just been kinda sticking things I’ve found on the internet in in hopes of something working out but no luck so far


  • I’ve tried to rewrite the joystick code and now am getting different errors:

    Compiling: quantum/keymap_introspection.c                                                           [OK]
    Compiling: quantum/command.c                                                                        [OK]
    Compiling: tmk_core/protocol/host.c                                                                tmk_core/protocol/host.c: In function 'host_joystick_send':
    tmk_core/protocol/host.c:171:10: error: 'report_joystick_t' {aka 'struct '} has no member named 'axes'
             .axes =
              ^~~~
    tmk_core/protocol/host.c:172:13: error: extra brace group at end of initializer
                 {
                 ^
    tmk_core/protocol/host.c:172:13: note: (near initialization for 'report')
    tmk_core/protocol/host.c:172:13: error: excess elements in struct initializer [-Werror]
    tmk_core/protocol/host.c:172:13: note: (near initialization for 'report')
    cc1: all warnings being treated as errors
     [ERRORS]
     | 
     | 
     | 
    gmake[1]: *** [builddefs/common_rules.mk:361: .build/obj_eiris_default/protocol/host.o] Error 1
    gmake: *** [Makefile:392: eiris:default] Error 1
    Make finished with errors
    

    Also, I’m not sure if I need "#include “config_common.h” in my config.h file? I see it in some other config.h files. When I have that in my config.h file, it gives a fatal error: No such file or directory