Search found 441 matches

by hasu
20 May 2022, 01:06
Forum: Workshop
Topic: TMK keyboard firmware collection
Replies: 339
Views: 189414

Re: TMK keyboard firmware collection

to use this feature i would need to use the tmk "magic" key combo, which in this case would be both shift, both alt or both meta keys + a single extra key. it seems the matrix isnt able to do that. my question here is, is there any way to remap "magic" key combos, or even to map a key to a single h...
by hasu
01 Jan 2022, 14:12
Forum: Workshop
Topic: Simple Logic Analyzer for Teensy
Replies: 16
Views: 26922

Re: Simple Logic Analyzer for Teensy

Came here to this simple script that converts Soarer's output format into VCD(value change dump). VCD file can be read by PulseView. - https://sigrok.org/wiki/PulseView - https://en.wikipedia.org/wiki/Value_change_dump - https://sigrok.org/wiki/File_format:Vcd Screenshot_2022-01-01_21-59-13.png #!/u...
by hasu
28 Oct 2021, 05:32
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

Thank you for your test. The debug log looks ok now. I updated firmware. No big change for Z-150 AT, though. You can download new firmware on Keymap Editor now. https://geekhack.org/index.php?topic=103648.msg3090743#msg3090743 Let me know if you have any problem with new firmware. Alps or any switch...
by hasu
27 Oct 2021, 03:31
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

No swith option for hid_listen command.
I think you can copy text in the Commnad Prompt.
https://www.maketecheasier.com/enable-c ... windows10/
https://www.laptopmag.com/articles/how- ... rompt-copy
by hasu
26 Oct 2021, 19:16
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

It seems that the keyboard doesn't accept ID command(0xF2). Can you try this firmware then with pressing CapsLock key 10-20 times quickly? https://gist.githubusercontent.com/tmk/a6df901cb7f7ac9bd6a730b2fafcd0f5/raw/b9e9516d496c9746c637a647d9758a53acf01bfa/ibmpc_usb_debug.hex Pasting debug log in tex...
by hasu
25 Oct 2021, 02:16
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

Updated the firmware files. End line charactor of the last line seemed to be wrong. https://gist.githubusercontent.com/tmk/a6df901cb7f7ac9bd6a730b2fafcd0f5/raw/fe259cb7215496cd957e7a2ff417e876d29f598a/ibmpc_usb_debug.hex Output of hid_listen would be always helpful for debug even if the converter go...
by hasu
24 Oct 2021, 15:45
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

Thank you for the test. The converter seems to have problem occasionally when the converter sends command to the keyboard. 'R R R R ...' means error and retry of command. I changed timings of signal handling. Can you try this firmware with pressing CapsLock and NumLock key? https://gist.githubuserco...
by hasu
23 Oct 2021, 06:51
Forum: Workshop
Topic: Zenith Z-150 "Beige Label" Build Help
Replies: 36
Views: 34882

Re: Zenith Z-150 "Beige Label" Build Help

Glad to hear my firmware works for your keyboard. Z-150 AT is still required improvemnt in TMK firmware and your help would be appreciated. Can you try hid_listen to share its debug prints here? https://github.com/tmk/tmk_keyboard/wiki#hid_listen I like to see what hid_listen shows when procedure be...
by hasu
11 Jun 2021, 02:57
Forum: Workshop
Topic: TMK keyboard firmware collection
Replies: 339
Views: 189414

Re: TMK keyboard firmware collection

You can't run a MACRO repeatedly in current implementation at least.

This will be what you can do for similar behaviour.

Code: Select all

            return (record->event.pressed ?
                    MACRO(T(P0), D(P0), END ) :
                    MACRO(U(P0), END));
by hasu
09 Jun 2021, 16:36
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

For someone with Zenith Z-150 AT,
Updated IBMPC converter firmware for better support(LEDs).

https://geekhack.org/index.php?topic=10 ... msg3055384

Try and give feedback.
by hasu
25 May 2021, 19:21
Forum: Workshop
Topic: TMK keyboard firmware collection
Replies: 339
Views: 189414

Re: TMK keyboard firmware collection

I checked source code and confirmed that these key codes(0xB0-DD) including KP_00 and KP_000 are not supported at this time. https://github.com/tmk/tmk_keyboard/blob/master/tmk_core/common/keycode.h#L357-L402 You can't send the KP_00 with current firmware in the end. I may change this in future rele...
by hasu
25 May 2021, 17:38
Forum: Workshop
Topic: TMK keyboard firmware collection
Replies: 339
Views: 189414

Re: TMK keyboard firmware collection

what is OS you are using? Did you try other OS if you have any? And firstly you want to check if the OS supports the 'KP_00' key(USB HID usage 0xB0, or 176 in decimal). And debug log on 'hid_listen' would be helpful in most cases. Press both shifts and K to see keyboard report the converter sends to...
by hasu
24 May 2021, 10:05
Forum: Workshop
Topic: Cleaning Alps: return click woes
Replies: 11
Views: 2989

Re: Cleaning Alps: return click woes

I had annoying click noise similar to yours on my orange swithces, I think at least. Also found "paper mods" and its idea totally made sense to me but I didn't give this try in fact because I didn't like to use paper in my Alps for some reason. Instead I used this bending method and worked for me. I...
by hasu
19 Feb 2021, 03:33
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Thanks for reply.
Is that all you got in hid_listen?
Debug output during the keyobard "works fine" and when "you turn on lock lights" would be helpful.

Can you post debug outputs long as possible here or somewhere like pastebin.com?
by hasu
14 Feb 2021, 01:56
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Thanks for your patience. And take care of your shoulder. Firmware you tried(TMK:f8ce50eb/LUFA) is old version from Feb 9 for some reason, not the latest one. Could you try download firmware file from here and test again? https://github.com/tmk/tmk_keyboard/tree/ibmpc_z150at_fix4/converter/ibmpc_usb...
by hasu
12 Feb 2021, 15:08
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Good to know that lock lights works now. These two issues are still left at this point. 1) Lock lights are not updated at startup. They won't correspond with lock status of computer after startup. 2) The keyboard doesn't response to 'Read keyboard ID' command(wF2) for some reason. I updated firmware...
by hasu
12 Feb 2021, 04:33
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Great!

Can you confirm that LED indicators works when pressing Lock keys?
Also 'F7' key works? (Monoprice converter fails at F7 for no reason.)

I still like to check debug output to know that it works as expected.
Posting debug log with pressing those keys would be appreciated.
by hasu
10 Feb 2021, 06:44
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

I found a bug and updated firmware again.

https://github.com/tmk/tmk_keyboard/tre ... usb/binary

Could you test this when you have time?
by hasu
09 Feb 2021, 07:40
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Thanks for your patience. That firmware version(b4a30776) seems to have regression on keyboard protocol recognition. (The keyboard is recognized as a XT keyboard instead of AT.) Power-on test result(rAA) from the keyboard is received but 'Read keyboard ID' command(wF2) fails and the keyboard doesn't...
by hasu
06 Feb 2021, 06:29
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Updated firmware with fix for Z-150.

https://github.com/tmk/tmk_keyboard/tre ... usb/binary

Feedback and hid_listen debug log is still required to improve its support.

Thanks
by hasu
02 Feb 2021, 07:40
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Lekrafter, Thanks for the test. In the first video: 'ERR:17'(and 'ERR:20') still occurs but it can be recovered with the latest firmware. The converter works with the keyboard probably. In second one(Repluging at USB connector case): No error found. The converter should work as well. The converter s...
by hasu
26 Jan 2021, 01:44
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Thanks for your patience, Lekrafter. I want to add support for Zenith Z-150 AT to my converter but it requires many trial-and-error process. Hmm, the log shows new errors 'ERR:11' and 'ERR:F0' this time, which seems to be caused by You can get 'ERR:11' again with another test? To reproduce consisten...
by hasu
25 Jan 2021, 05:01
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Yes, that is exactly what I asked.
It seems that the keyboard fails to receive command from converter.

Updated firmware for debug. Try this and show debug outputs when you have time.
https://github.com/tmk/tmk_keyboard/tre ... usb/binary
by hasu
24 Jan 2021, 01:58
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Lekrafter wrote:
23 Jan 2021, 19:08
Just did but it unfortunately doesn't seem to work, but at least now the beeper always works
Can you post debug outputs on hid_listen?
Check 'Debug' section on the first post of my thread.
by hasu
23 Jan 2021, 09:41
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

You can try my firmware, it is compatibile to Soarer's converter.
https://geekhack.org/index.php?topic=103648.0

I have improved the firmware to add support for Z-150 AT, it should work except for CapsLock, NumLock and ScrollLock.
by hasu
23 Jan 2021, 07:04
Forum: Keyboards
Topic: Need help getting an AT Zenith Z150 working
Replies: 37
Views: 65683

Re: Need help getting an AT Zenith Z150 working

Are you sure that the keyboard worked correctly before you restored? And how do you connect it onto computer? directly to PS/2 port on motherboard, via PS/2-USB converter or ... I won't be surprised at all if the keyboard works weirdly regardless of your restoration. I have seen that people reported...
by hasu
14 Dec 2020, 06:03
Forum: Keyboards
Topic: Cherry USB controller problems visible in Linux and macOS
Replies: 25
Views: 9226

Re: Cherry USB controller problems visible in Linux and macOS

This problem is still there on Linux 5.4.0(Ubuntu 20.04.1). I didn't read HID spec thoroughly but I'd say Cherry controller is faulty rather than Linux HID stack. From natural interpretation of Appendix C of HID spec, keyboard should send 'valid' modifers in the first byte(modifer bitmap) of its rep...
by hasu
30 Nov 2020, 02:24
Forum: Keyboards
Topic: XT Zenith Z-150 converter?
Replies: 101
Views: 73758

Re: XT Zenith Z-150 converter?

Interesting is, that the beeper goes off for every key, except L- & R-Shift, Ctrl, and Alt. Any idea what the reason for that could be? 'Alt+Esc' is still available to toggle the beeper even under this situation? I don't have idea on this and the keyobard to test unfortunately. The converter can't ...
by hasu
29 Nov 2020, 01:55
Forum: Keyboards
Topic: XT Zenith Z-150 converter?
Replies: 101
Views: 73758

Re: XT Zenith Z-150 converter?

I think both issue is normal for the keyboard, not your or hardware fault. IBM XT keyboard doesn't has any LED indicator and XT keyboard protocol doesn't support it. Some clones have indicators and which are controlled just internally by keyboard itself but they are not controlled from host or conve...
by hasu
28 Nov 2020, 02:38
Forum: Keyboards
Topic: XT Zenith Z-150 converter?
Replies: 101
Views: 73758

Re: XT Zenith Z-150 converter?

Thanks for your mention on my project. Yes, it should work with XT Z-150, post in the thread(or here) if you have any problem. And now it requires testers with *Zenith AT Z-150* to add support for the weird keyboard. The converter can read scan codes from the keyboard but fails to control its LEDs. ...

Go to advanced search