Giter Club home page Giter Club logo

Comments (5)

koron avatar koron commented on July 29, 2024

https://docs.qmk.fm/#/feature_layers

MO(layer) - momentarily activates layer. As soon as you let go of the key, the layer is deactivated.

from keyball.

koron avatar koron commented on July 29, 2024

AML_* keys call set_auto_mouse_xxx() (where xxx is enable or timeout).
set_auto_mouse_xxx() calls auto_mouse_reset().
auto_mouse_reset() clears the context's status and timer.

https://github.com/qmk/qmk_firmware/blob/ca4541699915b37cd1f253bbed51854627efd2ce/quantum/pointing_device/pointing_device_auto_mouse.c#L107-L110

the cotext status is cleared, therefore no reasons to keep layer fo auto mouse ON.
the layer will be off.

from keyball.

koron avatar koron commented on July 29, 2024

I dought auto_mouse_context.status.mouse_key_tracker

from keyball.

koron avatar koron commented on July 29, 2024

I tried changing auto_mouse_reset() as follows.
It keeps mouse_key_tracker beyond auto_mouse_reset().

Then this problem is fixed.

It is difficult to fix it with the Keyball alone.
It requires modification of the QMK.

static void auto_mouse_reset(void) {
    int8_t tmp = auto_mouse_context.status.mouse_key_tracker;
    memset(&auto_mouse_context.status, 0, sizeof(auto_mouse_context.status));
    memset(&auto_mouse_context.timer, 0, sizeof(auto_mouse_context.timer));
    auto_mouse_context.status.mouse_key_tracker = tmp;
}

from keyball.

koron avatar koron commented on July 29, 2024

Give up!

from keyball.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.