mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
This adds support for the new ngff_cardem board, a board that basically combines a ngff breakout board with a built-in SIMtrace2. Cardem works, but depending on the modem it might need a adjusted ATR to ensure a lower baud rate is used by the modem, high rates might lead to weird power cycling of the card after a few transfers. Trace was also tested and appears to work as expected. Change-Id: Ia96124fbe8a752c98e7fd4096d542a3b2b9bc255
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
# udev rules to set the access rights of GemPC smart card readers
|
|
# so they can be used by pcscd
|
|
|
|
# If not adding the device, go away
|
|
ACTION!="add", GOTO="simtrace2_rules_end"
|
|
SUBSYSTEM!="usb", GOTO="simtrace2_rules_end"
|
|
|
|
# sysmocom SIMtrace2 (DFU and runtime)
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60e2", GROUP="plugdev"
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60e3", GROUP="plugdev"
|
|
# sysmocom OWHW (DFU and runtime)
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="4000", GROUP="plugdev"
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="4001", GROUP="plugdev"
|
|
# sysmocom QMOD hub
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="4002", GROUP="plugdev"
|
|
# sysmocom QMOD SAM3 (DFU and runtime)
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="4003", GROUP="plugdev"
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="4004", GROUP="plugdev"
|
|
# sysmocom OCTSIMTEST
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="616d", GROUP="plugdev"
|
|
# ngff-cardem
|
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="616e", GROUP="plugdev"
|
|
|
|
# All done
|
|
LABEL="simtrace2_rules_end"
|