Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A lpotato ptdevice alpotato #33

Closed

Commits on Feb 3, 2022

  1. feat(behaviors): Allow mod-morph to swallow mods

    Revert "fix(hid): Implicit mods on non-key page events"
    
    This reverts commit 6ef1e70.
    
    masked mods
    
    Unrevert "fix(hid): Implicit mods on non-key page events"
    
    Fix docs
    
    Lint code with clang-format
    vrinek committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    2cac694 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2022

  1. Configuration menu
    Copy the full SHA
    04b6c96 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2022

  1. Configuration menu
    Copy the full SHA
    f6af5a5 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2022

  1. Configuration menu
    Copy the full SHA
    f398f02 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2022

  1. Configuration menu
    Copy the full SHA
    ab7673f View commit details
    Browse the repository at this point in the history
  2. fix interrupt handling

    Luberry committed Apr 17, 2022
    Configuration menu
    Copy the full SHA
    218c5b0 View commit details
    Browse the repository at this point in the history
  3. update license headers

    Luberry committed Apr 17, 2022
    Configuration menu
    Copy the full SHA
    fd73042 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

  1. Configuration menu
    Copy the full SHA
    bdc8b9b View commit details
    Browse the repository at this point in the history
  2. fix pid for pmw3360

    Luberry committed Apr 21, 2022
    Configuration menu
    Copy the full SHA
    14eb5ff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3e0780b View commit details
    Browse the repository at this point in the history

Commits on May 14, 2022

  1. Configuration menu
    Copy the full SHA
    c03ef6b View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2022

  1. Configuration menu
    Copy the full SHA
    2921a17 View commit details
    Browse the repository at this point in the history
  2. ifdefs for link errors when compiling non-central, some includes, oth…

    …er minor hacks to compile, cleanup is needed later
    ftc committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    62b6b43 View commit details
    Browse the repository at this point in the history
  3. fix hid deprication warnings with crides 6ca7298, add missing method …

    …declaration to hog.h
    ftc committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    b9951ee View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f18d490 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a42b909 View commit details
    Browse the repository at this point in the history
  6. update mouse code from old macro CONFIG_ZMK_SPLIT_BLE_ROLE_CENTRAL to…

    … new CONFIG_ZMK_SPLIT_ROLE_CENTRAL
    ftc committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    19e4948 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2022

  1. feat(display): Add optional full refresh timer.

    * Useful for EPD that ghost after several partial updates. Only a
      temporary fix, tracking number of partial updates and triggering
      full refreshes based on that would be better.
    petejohanson authored and ufan committed Jun 8, 2022
    Configuration menu
    Copy the full SHA
    5bae0dd View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. fix dts binding include

    crides committed Jun 13, 2022
    Configuration menu
    Copy the full SHA
    2e0050f View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. backup

    1. change il0323 scanning direction
    2. allow output status widget on the peripheral side
    ufan committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    bef8f16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0f10977 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Merge branch 'display/optional-full-refresh-timer' into mychanges-main

    for epd display:
    - add an option to refresh the full screen after predefined time
    interval
    ufan committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    6e776c2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    09ac7ef View commit details
    Browse the repository at this point in the history
  3. do not update layer widget, for momentory layer

    by disabling event raising in mo behaviour
    ufan committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    bedd068 View commit details
    Browse the repository at this point in the history
  4. add an kconfig option to control whether showing the layer change for mo

    behavior on layer-status widget
    ufan committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    521b990 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. Configuration menu
    Copy the full SHA
    e96f516 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. Configuration menu
    Copy the full SHA
    89dac4c View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. refactor(core): read sensor values earlier

    Reading the values earlier will let us send the sensor values over GATT
    for split, which will happen in a subsequent commit.
    stephen authored and ufan committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    f9bed08 View commit details
    Browse the repository at this point in the history
  2. refactor(split): take params in subscribe

    We'll reuse this function later to subscribe to multiple characteristics.
    
    —
    
    This commit was originally made by Stephen Wan. I just adjusted it so that it rebases on top of later changes on the zmk main branch.
    infused-kim authored and ufan committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    d8a8b56 View commit details
    Browse the repository at this point in the history
  3. feature(split): add support for sensors from peripheral

    This commit adds a new GATT characteristics on the peripheral side
    and wires it up to read sensor values. The central side subscribes
    to this new characteristics and replays sensor values on its side.
    
    —
    
    This commit was originally made by Stephen Wan. I just adjusted it so that it rebases on top of later changes on the zmk main branch.
    infused-kim authored and ufan committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    f01c148 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a1fc03 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5ee7703 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Configuration menu
    Copy the full SHA
    58a5ba2 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2022

  1. Configuration menu
    Copy the full SHA
    ee10458 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1634f5f View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2022

  1. cleanup logo icons

    ufan committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    29e60e8 View commit details
    Browse the repository at this point in the history
  2. [Add] support for custom logo icon to display on the slave split

    How to enable it:
    1. enable CONFIG_NRFMACRO_SCREEN_CUSTOM_LOGO in user's zmk_config
    2. use the online image converter to convert the logo image to a C
       source file with designator 'customlogo' (https://lvgl.io/tools/imageconverter)
    
    The logo image can be downloaded or created with bitmap format (.png).
    The available space for custom logo is about 70x70.
    
    IMPORTATNT:
    The filename of the converted logo source file must be 'customlogo.c'.
    This is the only signature recognized by the build system.
    ufan committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    361054f View commit details
    Browse the repository at this point in the history
  3. bugfix

    ufan committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    5635300 View commit details
    Browse the repository at this point in the history
  4. add modified version of stdlogo

    ufan committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    b84bebf View commit details
    Browse the repository at this point in the history
  5. bugfix in keymap

    ufan committed Jul 12, 2022
    Configuration menu
    Copy the full SHA
    4106b77 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2022

  1. add epd rotation config option

    ufan committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    55db750 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2022

  1. backup

    ufan committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    bf03cb9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bdb5cc1 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. backup

    ufan committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    ba0d242 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. Configuration menu
    Copy the full SHA
    092ff8c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e05cb20 View commit details
    Browse the repository at this point in the history
  3. update corne-pro mark logo

    ufan committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    0ab42ab View commit details
    Browse the repository at this point in the history
  4. [new shield] sweep-pro

    ufan committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    e3fd070 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2022

  1. Configuration menu
    Copy the full SHA
    2bd7c11 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Configuration menu
    Copy the full SHA
    59aad2d View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Configuration menu
    Copy the full SHA
    ba26edd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89afd0b View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. backup

    ufan committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    09b8c1c View commit details
    Browse the repository at this point in the history
  2. bugfix

    ufan committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    37b77e5 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2022

  1. change trackball cpi

    ufan committed Aug 6, 2022
    Configuration menu
    Copy the full SHA
    18176b6 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Configuration menu
    Copy the full SHA
    0cf8c1b View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2022

  1. backup

    ufan committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    5057564 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. backup

    ufan committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    74a4fc9 View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    60fe1c6 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2022

  1. bugfix

    ufan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    f7ae567 View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    4a6702d View commit details
    Browse the repository at this point in the history
  3. backup

    ufan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    b2f31f4 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2022

  1. Configuration menu
    Copy the full SHA
    8fcd571 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Configuration menu
    Copy the full SHA
    d193013 View commit details
    Browse the repository at this point in the history
  2. [pmw33xx] bugfix: no need to reset motion register aftre burst

    This fix reduces the sample fetch and channel get time cost to
    300-400 us.
    The usb report update cost ~100 us.
    Thus, the total time handling the interrupt under usb is 400-500 us
    ufan committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    42f6688 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. add debug log

    ufan committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    2d66499 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2022

  1. Configuration menu
    Copy the full SHA
    2e7c33d View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2022

  1. backup

    ufan committed Aug 28, 2022
    Configuration menu
    Copy the full SHA
    fc03bdd View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Aug 28, 2022
    Configuration menu
    Copy the full SHA
    cd43042 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    647606f View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2022

  1. Configuration menu
    Copy the full SHA
    1a5b52d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ccebde View commit details
    Browse the repository at this point in the history
  3. add cpi dividor dts property

    ufan committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    a273850 View commit details
    Browse the repository at this point in the history
  4. [add] pmw3360 firmware id checking in init_chip

    The firmware id is the second byte of the SROM hex array.
    The version of pmw3360 srom used in zmk (i.e., pmw3360_srom.h) is 0x05.
    ufan committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    4c69b26 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. Configuration menu
    Copy the full SHA
    d9b69fa View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. backup

    ufan committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    df5a3a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a9cacc5 View commit details
    Browse the repository at this point in the history
  3. [paw3395] add register arrays

    ufan committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    80122b8 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Configuration menu
    Copy the full SHA
    3cb2cfa View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    11305f5 View commit details
    Browse the repository at this point in the history
  3. backup

    ufan committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    1f22106 View commit details
    Browse the repository at this point in the history
  4. backup

    ufan committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    0ed4bfa View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2022

  1. Configuration menu
    Copy the full SHA
    46b8928 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2022

  1. backup

    ufan committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    9a92965 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2daea44 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    abfd293 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    42e1d11 View commit details
    Browse the repository at this point in the history
  5. [modify] the pixart optical sesor drivers to have the same calling in…

    …terface
    
    There is potential to integrate these driver code more tightly. TBD.
    ufan committed Sep 5, 2022
    Configuration menu
    Copy the full SHA
    18a737a View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. [change] add default zmk log level to info and add log output of conn…

    …ection
    
    parameters on connection
    ufan committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    861b0ce View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Configuration menu
    Copy the full SHA
    f7ec5eb View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. [optimize] il0323 driver, comment out the using of epd reset pin, thu…

    …s only 7 pins needed for
    
    epd connection
    
    1. reset pin is only used at the beginning of il0323_init, as power-on reset
    2. tests show that disabling the usage does not affect the correct functioning
    of epd
    ufan committed Sep 9, 2022
    Configuration menu
    Copy the full SHA
    db82302 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2022

  1. [bug-fix] pwm3610 driver init timing parameter tuning, now can be int…

    …egrated
    
    with displays
    ufan committed Sep 10, 2022
    Configuration menu
    Copy the full SHA
    f837789 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bf4c077 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dffdf6a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Configuration menu
    Copy the full SHA
    bef5254 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. Configuration menu
    Copy the full SHA
    f5697e9 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. backup

    ufan committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    c85fd16 View commit details
    Browse the repository at this point in the history
  2. [cap1203] bugfix

    ufan committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    0b4638e View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2022

  1. Configuration menu
    Copy the full SHA
    52931c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31a0a1e View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2022

  1. backup

    ufan committed Oct 3, 2022
    Configuration menu
    Copy the full SHA
    8c2170f View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. [cap1203] working template with functional slider and mix mode

    NOTE: in mix mode, the button behavior is implemented differently from pure
    button mode:
    1. Taps with duration longer than an pre-defined time is classified as cancelled
    slide movement. The use case is that users may put their fingers on the bar but
    then decide not to do the slide, thus it's a cancelling behavior.
    2. Press state is sent to kscan listener only at the end of one update cycle.
    While in pure button mode, the state change is sent immediately when an
    interrput is received. This is a compromise, since to determine a slider
    movement, the previous state is needed.
    3. Slide movement is determined by the linear relative status pattern change.
    4. Multi-touch is supported, but not recommended for reliable usage in daily
    routine. The timing requirement is so strict and all presses and releases should
    be performed at the same time to generate a single interrupt. Otherwise, it may
    be recognized as a slide.
    5. The algorithm design is from top to bottom, i.e. only the supported movements
    are well recognized. If un-regular movements is performed, the output may not be
    what users expected. For example, when initially tapping the 1st and 3rd pad,
    and then touch the 2nd pad, there will be no output; on the other hand, if
    pressing the 1st and 2nd pads first, then 3rd pad, this is recognized as slide
    with delta 2/-2. However, this pattern is not within the design of algorithm.
    And is not a useful movement anyway.
    ufan committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    3885d14 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. Configuration menu
    Copy the full SHA
    1345b06 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2022

  1. Configuration menu
    Copy the full SHA
    c13afa7 View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Oct 8, 2022
    Configuration menu
    Copy the full SHA
    572f796 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    798d7db View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2022

  1. Configuration menu
    Copy the full SHA
    4a65e09 View commit details
    Browse the repository at this point in the history
  2. bugfix

    ufan committed Oct 9, 2022
    Configuration menu
    Copy the full SHA
    f7c6a5f View commit details
    Browse the repository at this point in the history
  3. bugfix

    ufan committed Oct 9, 2022
    Configuration menu
    Copy the full SHA
    95f8ddc View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2022

  1. Configuration menu
    Copy the full SHA
    6d89ddc View commit details
    Browse the repository at this point in the history
  2. bugfix

    ufan committed Oct 10, 2022
    Configuration menu
    Copy the full SHA
    bcba988 View commit details
    Browse the repository at this point in the history
  3. [trackball] optimize default parameters

    pmw3610 has max interrupt rate of 8 ms
    ufan committed Oct 10, 2022
    Configuration menu
    Copy the full SHA
    9467c91 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    06a270e View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. backup

    ufan committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    b44317f View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    80f8a1a View commit details
    Browse the repository at this point in the history
  3. [nrfmacro] delete default chosen node: zmk,battery

    This node should be configured in shield level, so that the measuring method can
    be customized
    ufan committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    57ae56e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fdc932f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    912894a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb4cdfb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    11e4cd9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    47458cb View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2022

  1. backup

    ufan committed Oct 15, 2022
    Configuration menu
    Copy the full SHA
    da73a7c View commit details
    Browse the repository at this point in the history
  2. [max17048] init working version

    ufan committed Oct 15, 2022
    Configuration menu
    Copy the full SHA
    c8e6717 View commit details
    Browse the repository at this point in the history
  3. [max17048] the minimal functions of max17048 is implemented

    todo:
    1. temperature compensation (rcomp)
    2. voltage level
    3. some interface functions using attr_set API
    ufan committed Oct 15, 2022
    Configuration menu
    Copy the full SHA
    f04b582 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

  1. Configuration menu
    Copy the full SHA
    2e89655 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2022

  1. backup

    ufan committed Oct 17, 2022
    Configuration menu
    Copy the full SHA
    70383bb View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2022

  1. Configuration menu
    Copy the full SHA
    11c778b View commit details
    Browse the repository at this point in the history
  2. [blade] add full keymap

    ufan committed Oct 18, 2022
    Configuration menu
    Copy the full SHA
    38b9751 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. backup

    ufan committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    503c312 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. Configuration menu
    Copy the full SHA
    1b17dfe View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Configuration menu
    Copy the full SHA
    ff5b38c View commit details
    Browse the repository at this point in the history
  2. backup

    ufan committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    a1e7f26 View commit details
    Browse the repository at this point in the history
  3. backup

    ufan committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    5a9cdd7 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2022

  1. backup

    ufan committed Oct 29, 2022
    Configuration menu
    Copy the full SHA
    3a6d6c0 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. [cap1203] add polling mode and activation by sliders.c solely

    Previously, cap1203 is only activated by the kscan module even used as pure
    slider.
    Now it is also activated by the sliders module, so no need to add it into
    kscan matrix when used as a pure slider.
    ufan committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    9fa560b View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2022

  1. Configuration menu
    Copy the full SHA
    acc9e98 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. Configuration menu
    Copy the full SHA
    5177db3 View commit details
    Browse the repository at this point in the history
  2. change to encoder_right

    ALpotato committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    c013d0f View commit details
    Browse the repository at this point in the history
  3. change to pro_micro_spi

    ALpotato committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    390ecc5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    48cd717 View commit details
    Browse the repository at this point in the history
  5. omg

    ALpotato committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    048ea87 View commit details
    Browse the repository at this point in the history
  6. 3610 -> 3360

    ALpotato committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    f2a5138 View commit details
    Browse the repository at this point in the history
  7. orientation 0

    ALpotato committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    8b3d237 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2023

  1. Configuration menu
    Copy the full SHA
    6585365 View commit details
    Browse the repository at this point in the history
  2. turn on logging

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    abacd18 View commit details
    Browse the repository at this point in the history
  3. update

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    47b297e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f80282a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    51ae4c5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9e8248a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9ced3e4 View commit details
    Browse the repository at this point in the history
  8. add tracktyl left name

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    2a5ec63 View commit details
    Browse the repository at this point in the history
  9. update to v3.2.0

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    12b1698 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3528c14 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e6f7856 View commit details
    Browse the repository at this point in the history
  12. try to fix build

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    581c8a2 View commit details
    Browse the repository at this point in the history
  13. revert build.yml change

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    eff8a33 View commit details
    Browse the repository at this point in the history
  14. revert west.yml

    ALpotato committed Apr 23, 2023
    Configuration menu
    Copy the full SHA
    1e37cd6 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2023

  1. Configuration menu
    Copy the full SHA
    5fdb21c View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. Configuration menu
    Copy the full SHA
    e6c226b View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. Configuration menu
    Copy the full SHA
    7becf1c View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. Configuration menu
    Copy the full SHA
    e4b117a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c20c52 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. Configuration menu
    Copy the full SHA
    3879c73 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. adding mouse keys in combos

    ALpotato committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    04dea59 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    72aeffb View commit details
    Browse the repository at this point in the history
  2. corne_cirque change tryout

    ALpotato committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    70f9608 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    5591ade View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Configuration menu
    Copy the full SHA
    85095af View commit details
    Browse the repository at this point in the history