i-pex는 회사 이름이자 브랜드 명이라고 한다.

그 일환으로서, 기업이 바라보는 모습을 명시함과 함께, 글로벌 브랜드 인지도의 확대를 도모하기 위해 2020년 8월부터 사명과 브랜드를 [I-PEX(아이펙스)]로 통일했습니다. 앞으로도 그룹의 모든 임직원이 [I-PEX] 아래 하나가 되어, 독자적인 기술,상품,솔루션을 제공하여 세계에서 신뢰받고 사랑받는 글로벌 브랜드로 성장시켜 나가겠습니다.

I-PEX = Innovative Product development & Engineering solutions eXpert

[링크 : https://www.i-pex.com/ko-kr/who-we-are]

 

아무튼 회사에서 평범하게 보던게 MHF1 인것 같은데

intel 8265ngw m.2 무선랜카드의 커넥터에 꽂아지지 않길래 찾아보니

ipex인건 맞는데 MHF 라는 다른(?) 명칭이 더 있다고..

[링크 : https://m.blog.naver.com/just4u78/222131170259]

 

i-pex MHF 4L이 M.2의 표준인데 1.2mm 와 1.4mm 두가지를 허용하나보다.

 

[링크 : https://www.i-pex.com/sites/default/files/pdf/Matrix_RF_Connector_E.pdf]

'하드웨어 > 커넥터 (Connector)' 카테고리의 다른 글

press fit type 커넥터  (0) 2025.05.16
FAKRA  (0) 2022.08.17
USB3.0 커넥터  (1) 2022.03.24
m.2 와 mini PCI-e  (0) 2022.01.26
M.2  (0) 2022.01.19
Posted by 구차니
하드웨어/lora lorawan2026. 2. 27. 18:30

preamble은 빼고 payload + crc 까진 받아볼 수 있다곤 하는데 정작해보니 잘 안된다.

노이즈만 잔뜩.. 멀 빼먹은걸까?

1. Payload CRC 포함 수신 (가장 일반적)
레지스터 설정으로 CRC를 수신 데이터에 포함시킬 수 있습니다.
c// RegModemConfig2 (0x1E) - RxPayloadCrcOn bit 설정
// bit[2] = 1: CRC 활성화
uint8_t config2 = readReg(REG_MODEM_CONFIG_2);
config2 |= (1 << 2);  // RxPayloadCrcOn = 1
writeReg(REG_MODEM_CONFIG_2, config2);
수신 후 CRC 에러 여부 확인:
c// RegIrqFlags (0x12)
// bit[5] = PayloadCrcError
uint8_t irqFlags = readReg(REG_IRQ_FLAGS);
if (irqFlags & (1 << 5)) {
    // CRC 에러
}

2. Implicit Header Mode (헤더 없이 raw payload)
c// RegModemConfig1 (0x1D)
// bit[0] = ImplicitHeaderModeOn
uint8_t config1 = readReg(REG_MODEM_CONFIG_1);
config1 |= 0x01;  // Implicit Header Mode
writeReg(REG_MODEM_CONFIG_1, config1);
Implicit Header Mode에서는:

헤더(Length, CR, CRC 정보)가 전송되지 않음
송수신 양측이 동일한 파라미터를 사전에 알고 있어야 함
FIFO에서 고정 길이의 raw 데이터를 읽음

 

'하드웨어 > lora lorawan' 카테고리의 다른 글

lora driver for stm32 written in c  (0) 2026.02.26
sx1276 spi 통신  (0) 2026.02.19
LoRa modulation basics  (0) 2025.12.16
lora CR(coding rate)  (0) 2025.12.16
lora evk  (0) 2025.10.02
Posted by 구차니
하드웨어/lora lorawan2026. 2. 26. 10:08

매번 찾아도 안나오더니 오늘 검색하니 똭. -_-

구글아 날 괴롭히는거지?

 

아무튼 c로 작성된 녀석인데.. dio 인터럽트는 사용하지 않고

레지스터 읽어서 (0x12 IRQ flag) 처리하는 쪽으로 구성이 된 듯.

 

RECEIVE packet routines
uint8_t  lora_is_packet_available(lora_sx1276 *lora) Checks if packet modem has packet awaiting to be received Returns 0 if no packet is available, or any positive integer in case packet is ready

uint8_t  lora_pending_packet_length(lora_sx1276 *lora); If modem has packet awaiting to be received - returns it's length.

[링크 : https://github.com/belyalov/stm32-hal-libraries/blob/master/doc/lora.md]

[링크 : https://github.com/belyalov/stm32-hal-libraries/tree/master]

'하드웨어 > lora lorawan' 카테고리의 다른 글

sx1276 raw pakcet  (0) 2026.02.27
sx1276 spi 통신  (0) 2026.02.19
LoRa modulation basics  (0) 2025.12.16
lora CR(coding rate)  (0) 2025.12.16
lora evk  (0) 2025.10.02
Posted by 구차니
하드웨어/lora lorawan2026. 2. 19. 15:53

 

CPOL=0 CPHA=0 으로 설정해주고

데이터가 전송되는 동안 NSS를 low로 유지

address 1byte(MSB wnr bit = 1 write, 0 read)

1byte data 로 데이터를 주고 받을수 있는 듯.

 

아쉽게도 통신 확인용 device id 레지스터는 없는 듯 한데..

그나마 그런용도로 쓸만한게 0x42 RegVersion 0x12 로 리턴되나 보면 될 듯

 

+

NRESET 핀을 HIGH로 해주어야 sx1276 이 살아나고

그 외엔 정상적으로 잘 읽는 듯 하다.

void sx1276_read_ver()
{
  uint8_t address = 0x42; // RegVersion
  uint8_t data = 0x00;
  uint16_t len = 1;

  HAL_GPIO_WritePin(GPIOB, GPIO_PIN_1, GPIO_PIN_SET);
  HAL_Delay(500);

  HAL_GPIO_WritePin(NSS_GPIO_Port, NSS_Pin, GPIO_PIN_RESET);
    HAL_SPI_Transmit(&hspi2, &address, len, 100);
    HAL_SPI_Receive(&hspi2, &data, len, 100);
  HAL_GPIO_WritePin(NSS_GPIO_Port, NSS_Pin, GPIO_PIN_SET);

  printf("sx1276 ver %X\r\n", data);
}

 

ver 0 나와서 당황.. -_-

sx1276 ver 0
sx1276 ver 12

'하드웨어 > lora lorawan' 카테고리의 다른 글

sx1276 raw pakcet  (0) 2026.02.27
lora driver for stm32 written in c  (0) 2026.02.26
LoRa modulation basics  (0) 2025.12.16
lora CR(coding rate)  (0) 2025.12.16
lora evk  (0) 2025.10.02
Posted by 구차니
하드웨어/VR2026. 2. 9. 10:01

ubuntu 22.04

 

$ sudo dmesg -w
[429483.403850] usb 1-3.4-port1: disabled by hub (EMI?), re-enabling...
[429483.404173] usb 1-3.4.1: USB disconnect, device number 44
[429483.404685] cp210x ttyUSB0: cp210x converter now disconnected from ttyUSB0
[429483.404757] cp210x 1-3.4.1:1.0: device disconnected
[429483.578220] usb 1-3.4.1: new full-speed USB device number 46 using xhci_hcd
[429483.656629] usb 1-3.4.1: New USB device found, idVendor=10c4, idProduct=ea60, bcdDevice= 1.00
[429483.656648] usb 1-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[429483.656656] usb 1-3.4.1: Product: CP2102 USB to UART Bridge Controller
[429483.656661] usb 1-3.4.1: Manufacturer: Silicon Labs
[429483.656666] usb 1-3.4.1: SerialNumber: 0001
[429483.663687] cp210x 1-3.4.1:1.0: cp210x converter detected
[429483.666965] usb 1-3.4.1: cp210x converter now attached to ttyUSB0
[429719.385503] usb 1-1: new high-speed USB device number 47 using xhci_hcd
[429719.513887] usb 1-1: New USB device found, idVendor=04b4, idProduct=6572, bcdDevice=32.99
[429719.513893] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[429719.513895] usb 1-1: Product: USB2.0 Hub
[429719.515462] hub 1-1:1.0: USB hub found
[429719.515772] hub 1-1:1.0: 4 ports detected
[429719.792609] usb 1-1.4: new low-speed USB device number 48 using xhci_hcd
[429719.877250] usb 1-1.4: No LPM exit latency info found, disabling LPM.
[429719.898099] usb 1-1.4: New USB device found, idVendor=1f29, idProduct=0000, bcdDevice= 0.00
[429719.898119] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[429719.898126] usb 1-1.4: Product: USB Type-C Digital AV Adapter
[429719.898131] usb 1-1.4: Manufacturer: Analogix
[429719.898136] usb 1-1.4: SerialNumber: 201501ANX001
[429720.376725] usb 1-1.1: new full-speed USB device number 49 using xhci_hcd
[429720.456839] usb 1-1.1: New USB device found, idVendor=2d40, idProduct=0012, bcdDevice= 1.10
[429720.456859] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[429720.456867] usb 1-1.1: Product: Pico REAL Plus
[429720.456873] usb 1-1.1: Manufacturer: Pico Technology Co.Ltd.
[429720.456878] usb 1-1.1: SerialNumber: A3770
[429720.469148] hid-generic 0003:2D40:0012.0008: hiddev1,hidraw7: USB HID v1.11 Device [Pico Technology Co.Ltd. Pico REAL Plus] on usb-0000:00:14.0-1.1/input0
[429720.472384] input: Pico Technology Co.Ltd. Pico REAL Plus as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0009/input/input27
[429720.473108] hid-multitouch 0003:2D40:0012.0009: input,hiddev2,hidraw8: USB HID v1.11 Mouse [Pico Technology Co.Ltd. Pico REAL Plus] on usb-0000:00:14.0-1.1/input1
[429722.681526] usb 1-1.3: new full-speed USB device number 50 using xhci_hcd
[429722.770007] usb 1-1.3: New USB device found, idVendor=0d8c, idProduct=0022, bcdDevice= 1.06
[429722.770034] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[429722.770046] usb 1-1.3: Product: USB Advanced Audio Device
[429722.770055] usb 1-1.3: Manufacturer: C-Media Electronics Inc.
[429722.806106] input: C-Media Electronics Inc. USB Advanced Audio Device as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.000A/input/input28
[429722.806321] cm6533_jd 0003:0D8C:0022.000A: input,hiddev3,hidraw9: USB HID v1.11 Device [C-Media Electronics Inc. USB Advanced Audio Device] on usb-0000:00:14.0-1.3/input2
[429722.850036] usbcore: registered new interface driver snd-usb-audio

 

$ lsusb -t -v
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/12p, 480M
    ID 1d6b:0002 Linux Foundation 2.0 root hub
    |__ Port 1: Dev 47, If 0, Class=Hub, Driver=hub/4p, 480M
        ID 04b4:6572 Cypress Semiconductor Corp. Unprogrammed CY7C65642 hub
        |__ Port 3: Dev 50, If 1, Class=Audio, Driver=snd-usb-audio, 12M
            ID 0d8c:0022 C-Media Electronics, Inc. 
        |__ Port 3: Dev 50, If 2, Class=Human Interface Device, Driver=usbhid, 12M
            ID 0d8c:0022 C-Media Electronics, Inc. 
        |__ Port 3: Dev 50, If 0, Class=Audio, Driver=snd-usb-audio, 12M
            ID 0d8c:0022 C-Media Electronics, Inc. 
        |__ Port 1: Dev 49, If 0, Class=Human Interface Device, Driver=usbhid, 12M
            ID 2d40:0012  
        |__ Port 1: Dev 49, If 1, Class=Human Interface Device, Driver=usbhid, 12M
            ID 2d40:0012  
        |__ Port 4: Dev 48, If 0, Class=, Driver=, 1.5M
            ID 1f29:0000  

 

 

얘는 이렇게 돌려야 하네

 

+

장치는 /sys/class/drm/card1-DP-1 으로 연결된것 같고

$ udevadm monitor
KERNEL[86775.653367] change   /devices/platform/USBC000:00/typec/port0 (typec)
KERNEL[86775.653406] add      /devices/platform/USBC000:00/typec/port0/port0-partner (typec)
KERNEL[86775.653422] change   /devices/platform/USBC000:00/typec/port0 (typec)
KERNEL[86775.653458] change   /devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001 (power_supply)
UDEV  [86775.655223] change   /devices/platform/USBC000:00/typec/port0 (typec)
UDEV  [86775.655799] change   /devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001 (power_supply)
UDEV  [86775.656388] add      /devices/platform/USBC000:00/typec/port0/port0-partner (typec)
UDEV  [86775.657088] change   /devices/platform/USBC000:00/typec/port0 (typec)
KERNEL[86775.917329] change   /devices/pci0000:00/0000:00:02.0/drm/card1 (drm)
UDEV  [86775.934553] change   /devices/pci0000:00/0000:00:02.0/drm/card1 (drm)
KERNEL[86776.078811] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
KERNEL[86776.080126] change   /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
KERNEL[86776.080259] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0 (usb)
KERNEL[86776.083727] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0 (usb)
KERNEL[86776.083776] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
UDEV  [86776.089202] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
UDEV  [86776.095977] change   /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
UDEV  [86776.101407] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0 (usb)
UDEV  [86776.107090] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0 (usb)
UDEV  [86776.112352] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1 (usb)
KERNEL[86776.481217] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4 (usb)
KERNEL[86776.488080] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0 (usb)
KERNEL[86776.488249] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4 (usb)
UDEV  [86776.510201] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4 (usb)
UDEV  [86776.530765] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0 (usb)
UDEV  [86776.547559] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4 (usb)
KERNEL[86777.112843] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1 (usb)
KERNEL[86777.122202] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0 (usb)
KERNEL[86777.123824] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012 (hid)
KERNEL[86777.124607] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/usbmisc/hiddev1 (usbmisc)
KERNEL[86777.124787] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012/hidraw/hidraw8 (hidraw)
KERNEL[86777.124982] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012 (hid)
KERNEL[86777.125127] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0 (usb)
KERNEL[86777.125348] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1 (usb)
KERNEL[86777.127242] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013 (hid)
KERNEL[86777.128421] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44 (input)
KERNEL[86777.128557] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44/mouse7 (input)
KERNEL[86777.128716] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44/event24 (input)
KERNEL[86777.128923] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/usbmisc/hiddev2 (usbmisc)
KERNEL[86777.129082] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/hidraw/hidraw9 (hidraw)
KERNEL[86777.129201] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013 (hid)
KERNEL[86777.129314] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1 (usb)
KERNEL[86777.129441] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1 (usb)
UDEV  [86777.140516] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1 (usb)
UDEV  [86777.146266] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1 (usb)
UDEV  [86777.146331] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0 (usb)
UDEV  [86777.148839] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012 (hid)
UDEV  [86777.149435] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013 (hid)
UDEV  [86777.151715] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/usbmisc/hiddev1 (usbmisc)
UDEV  [86777.152543] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44 (input)
UDEV  [86777.153251] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/usbmisc/hiddev2 (usbmisc)
UDEV  [86777.154119] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012/hidraw/hidraw8 (hidraw)
UDEV  [86777.155696] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:2D40:0012.0012 (hid)
UDEV  [86777.155852] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/hidraw/hidraw9 (hidraw)
UDEV  [86777.156035] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44/mouse7 (input)
UDEV  [86777.160756] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.0 (usb)
UDEV  [86777.350387] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013/input/input44/event24 (input)
UDEV  [86777.351709] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:2D40:0012.0013 (hid)
UDEV  [86777.356634] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1:1.1 (usb)
UDEV  [86777.363453] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1 (usb)
KERNEL[86779.433596] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3 (usb)
KERNEL[86779.437884] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0 (usb)
KERNEL[86779.462349] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1 (sound)
KERNEL[86779.462531] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1/pcmC1D0p (sound)
KERNEL[86779.462582] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1/controlC1 (sound)
KERNEL[86779.462687] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0 (usb)
KERNEL[86779.462741] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1 (usb)
KERNEL[86779.462800] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1 (usb)
KERNEL[86779.462864] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2 (usb)
KERNEL[86779.465208] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014 (hid)
KERNEL[86779.465584] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/input/input45 (input)
KERNEL[86779.465650] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/input/input45/event25 (input)
KERNEL[86779.465768] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/usbmisc/hiddev3 (usbmisc)
KERNEL[86779.465874] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/hidraw/hidraw10 (hidraw)
KERNEL[86779.465954] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014 (hid)
KERNEL[86779.466051] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2 (usb)
KERNEL[86779.466149] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3 (usb)
UDEV  [86779.476418] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3 (usb)
UDEV  [86779.482487] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1 (usb)
UDEV  [86779.482559] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2 (usb)
UDEV  [86779.482861] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0 (usb)
UDEV  [86779.485448] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1 (sound)
UDEV  [86779.485503] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014 (hid)
UDEV  [86779.489217] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/input/input45 (input)
UDEV  [86779.489357] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1/pcmC1D0p (sound)
UDEV  [86779.489398] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/usbmisc/hiddev3 (usbmisc)
KERNEL[86779.491068] change   /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1 (sound)
UDEV  [86779.491721] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.1 (usb)
UDEV  [86779.492132] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/hidraw/hidraw10 (hidraw)
UDEV  [86779.518813] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1/controlC1 (sound)
UDEV  [86779.523897] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0 (usb)
UDEV  [86779.546666] add      /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014/input/input45/event25 (input)
UDEV  [86779.548087] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:0D8C:0022.0014 (hid)
UDEV  [86779.553519] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.2 (usb)
UDEV  [86779.561622] bind     /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3 (usb)
UDEV  [86779.563531] change   /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/sound/card1 (sound)

 

그 안에 EDID 파일에 접근하면 i2c로 바로 받아오는 듯.

그나저나 4k(세로) 72Hz만 지원하는건가?

$ for OUT in /sys/class/drm/card*; do echo $OUT; edid-decode $OUT/edid; echo "================="; done
/sys/class/drm/card1
/sys/class/drm/card1/edid: No such file or directory
=================
/sys/class/drm/card1-DP-1
edid-decode (hex):

00 ff ff ff ff ff ff 00 4f 2e 00 72 31 d4 00 00
2a 1c 01 04 a5 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 26 ff 70 6c 80 00 a0 f0 32 02
82 00 ff ff 00 00 00 1e 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 fc
00 50 69 63 6f 56 52 00 00 00 00 00 00 00 00 00

----------------

Block 0, Base EDID:
  EDID Structure Version & Revision: 1.4
  Vendor & Product Identification:
    Manufacturer: SYN
    Model: 29184
    Serial Number: 54321
    Made in: week 42 of 2018
  Basic Display Parameters & Features:
    Digital display
    Bits per primary color channel: 8
    DisplayPort interface
    Image size is variable
    Gamma: 1.00
    Supported color formats: RGB 4:4:4
    First detailed timing does not include the native pixel format and preferred refresh rate
  Color Characteristics:
    Red  : 0.0000, 0.0000
    Green: 0.0000, 0.0000
    Blue : 0.0000, 0.0000
    White: 0.0000, 0.0000
  Established Timings I & II: none
  Standard Timings: none
  Detailed Timing Descriptors:
    DTD 1:  2160x3840   72.000 Hz   9:16  287.998 kHz 653.180 MHz (255 mm x 255 mm)
                 Hfront   50 Hsync   2 Hback  56 Hpol P
                 Vfront    8 Vsync   2 Vback 150 Vpol P
    Empty Descriptor
    Empty Descriptor
    Display Product Name: 'PicoVR'
Checksum: 0x00
=================

[링크 : https://bbs.archlinux.org/viewtopic.php?id=300029]

'하드웨어 > VR' 카테고리의 다른 글

pico real plus on windows  (0) 2026.02.08
pico real plus 윈도우에 연결하기  (0) 2024.07.31
5.5inch IPS 4k LCD  (0) 2024.07.29
pico real plus for U+ 구매  (0) 2024.07.28
Gear VR 리눅스 접속  (0) 2022.11.07
Posted by 구차니
하드웨어/VR2026. 2. 8. 16:00

별 언급없으면 win 11

컨트롤러는 HID 규격 마우스로 잡히는 듯

 

모니터로 잡히는데 일반 모니터인건 맞는데 표기법이 다를 뿐이려나. 윈11은 PicoVR이라고 명시된다.

win 11 win10

 

USB Type-C Digital AV Adapter라.. 이건 머지?

 

usb composite device 2개 추가, 일반 usb 허브 1개 추가

 

스피커(USB Advanced Audio Device) 추가

그래서 꽂으면 HDMI 모니터 대신 이쪽으로 소리가 넘어간다.

 

HID 규격 사용자 컨트롤 장치

HID 규격 터치 스크린

HID 준수 장치

Microsoft Input Configuration Device 1개

USB 입력 장치 3개 추가

 

+

win10 에서 custom resolution utility 를 통한 덤프

[링크 : https://m.blog.naver.com/kangyh5/221634215186]

 

+

꼬이는 바람에 드라이버 깔기 전으로 복원하고 라이젠 노트북에서 재시도

드라이버를 완전 재설치 해도 안풀리네.. -_-

 

+

2026.02.11

intel i5-7200u 내장 그래픽인데

4k 72hz를 지원하네? dp로 인식해서 가능한건가?

 



Time: 오전 10:28:55
Date: 2026년 2월 11일 수요일
EDID Manager Version: 1.0.0.14
___________________________________________________________________

Block 0 (EDID Base Block), Bytes 0 - 127,  128  BYTES OF EDID CODE:

        0   1   2   3   4   5   6   7   8   9   
000  |  00  FF  FF  FF  FF  FF  FF  00  4F  2E
010  |  00  72  31  D4  00  00  2A  1C  01  04
020  |  A5  00  00  00  00  00  00  00  00  00
030  |  00  00  00  00  00  00  00  00  01  01
040  |  01  01  01  01  01  01  01  01  01  01
050  |  01  01  01  01  26  FF  70  6C  80  00
060  |  A0  F0  32  02  82  00  FF  FF  00  00
070  |  00  1E  00  00  00  00  00  00  00  00
080  |  00  00  00  00  00  00  00  00  00  00
090  |  00  00  00  00  00  00  00  00  00  00
100  |  00  00  00  00  00  00  00  00  00  00
110  |  00  FC  00  50  69  63  6F  56  52  00
120  |  00  00  00  00  00  00  00  00

(8-9)     ID Manufacture Name : SYN
(10-11)   ID Product Code     : 7200
(12-15)   ID Serial Number    : 
(16)      Week of Manufacture : 42
(17)      Year of Manufacture : 2018

(18)      EDID Version Number : 1
(19)      EDID Revision Number: 4

(20)      Video Input Definition : Digital
DFP 1.x Compatible

(21)      Maximum Horizontal Image Size: 0 cm
(22)      Maximum Vertical Image Size  : 0 cm
(23)      Display Gamma                : 1.00
(24)      Power Management and Supported Feature(s):
MonochromeNon-sRGB

(25-34)   Color Characteristics
Red Chromaticity   :  Rx = 0.000  Ry = 0.000
Green Chromaticity :  Gx = 0.000  Gy = 0.000
Blue Chromaticity  :  Bx = 0.000  By = 0.000
Default White Point:  Wx = 0.000  Wy = 0.000

(35)      Established Timings I (Not Used)

(36)      Established Timings II (Not Used)

(37)      Manufacturer's Timings (Not Used)

(38-53)   Standard Timings (Not Used)

(54-71)   Detailed Descriptor #1: Detailed Timing (2160x3840 @ 72Hz)

Pixel Clock            : 653.18 MHz
Horizontal Image Size  : 255 mm
Vertical Image Size    : 255 mm
Refresh Mode           : Non-interlaced
Normal Display, No Stereo

Horizontal:
Active Time     : 2160 Pixels
Blanking Time   : 108 Pixels
Sync Offset     : 50 Pixels
Sync Pulse Width: 2 Pixels
Border          : 0 Pixels
Frequency       : 287 kHz

Vertical:
Active Time     : 3840 Lines
Blanking Time   : 160 Lines
Sync Offset     : 8 Lines
Sync Pulse Width: 2 Lines
Border          : 0 Lines

Digital Separate, Horizontal Polarity (+), Vertical Polarity (+)

Modeline: "2160x3840" 653.180 2160 2210 2212 2268 3840 3848 3850 4000 +hsync +vsync

(72-89)   Detailed Descriptor #2: Defined by Manufacturer

(90-107)  Detailed Descriptor #3: Defined by Manufacturer

(108-125) Detailed Descriptor #4: Monitor Name

Monitor Name: PicoVR

(126-127) Extension Flag and Checksum

Extension Block(s)  : 0
Checksum Value      : 0

___________________________________________________________________

System Information Summary:

Processor            : Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz
Operating System     : Microsoft Windows 10 Home
OS Version           : 10.0.19045
Service Pack         : 0.0

Video Controler:

Device ID            : VideoController1
Name                 : Intel(R) HD Graphics 620
Adapter Compatibility: Intel Corporation
Video Processor      : Intel(R) HD Graphics Family
Video RAM            : 1.00 GB (1,073,741,824 Bytes)
Availability         : Running or Full Power
Driver Version       : 26.20.100.7324
PNP Device ID        : PCI\VEN_8086&DEV_5916&SUBSYS_C148144D&REV_02\3&11583659&0&10
Resolution           : 1920x1080
Max Refresh Rate     : 59 Hz
Min Refresh Rate     : 48 Hz
Current Refresh Rate : 59 Hz
Current Scan Mode    : None-Interlaced
Status               : OK


___________________________________________________________________

'하드웨어 > VR' 카테고리의 다른 글

pico real plus on linux  (0) 2026.02.09
pico real plus 윈도우에 연결하기  (0) 2024.07.31
5.5inch IPS 4k LCD  (0) 2024.07.29
pico real plus for U+ 구매  (0) 2024.07.28
Gear VR 리눅스 접속  (0) 2022.11.07
Posted by 구차니

doom eternal은 드라이버 버전을 보는지 실해에 실패한다.

442.19 면.. 이유가 왜일까? vulkan 지원때문이려나?

Posted by 구차니

되는 목록에 flatout이 있어서 시도(용량이 2기가도 안되서 설치가 금세 되서 ㅋㅋ)

눈으로 보면 두개 겹쳐 보이는데, 스샷찍어 보면 정상으로 나온다.

 

기본값 15%

 

중앙의 녹색차를 보면 약간 차이가 난다.

 

100% 하면

 

눈으로는 도저히 촛점을 잡히 못할정도가 되는데, 아무튼 제법 멀리 떨어진다.

 

혹시나 해서 핸드폰으로 찍어보니 IR emitter라는말이 맞게

빨간색으로 송출한다. 이러니까 화면의 반짝임을 이용하는 DLP Ready 안경과는 호환이 안되겠지

Posted by 구차니

당근에서 3만원에 업어온 nvidia 3d vision kit.

예전 글 찾아보니 200$정도 했었고, 그래픽 카드도 나쁜걸 써서 엄두도 못내던 녀석.

15년 만에 가져보게 되었구나..

2011.03.19 - [하드웨어/3D Stereoscopic] - NVIDIA 3D vision kit

 

 

에미터는 머리가 잘린 피라미드 같다.

드라이버 설치해야지 nvidia 로고가 녹색으로 들어온다.

 

nvidia 3d vision 이라는 심플한 모델명.

 

안경에도 nvidia 3d vision model : P854 라고 써있다.

 

드라이버 버전이 높아서 그런가 ir emitter 드라이버 설치되지 않는다.

머 본다고 큰 도움이 되진 않는 VID와 PID

 

판매자분의 조언으로 425.31이 마지막 버전이라고 하셔서 일단 설치!

Please note: Effective April 12, 2018, Game Ready Driver upgrades, including performance enhancements, new features, and bug fixes, will be available only for desktop Kepler, Maxwell, Pascal, Volta, and Turing-series GPUs, as well as for systems utilizing mobile Maxwell, Pascal, and Turing-series GPUs for notebooks.

Following the posting of the final driver from Release 418 on April 11, 2019 GeForce Game Ready Drivers will no longer support NVIDIA 3D Vision or systems utilizing mobile Kepler-series GPUs. Critical security updates will be available for these products through April 2020. A complete list of Kepler-series GeForce GPUs can be found here.

Those looking to utilize 3D Vision can remain on a Release 418 driver. Our software that enables the use of 3D gaming with 3D TVs, 3DTV Play, is now included for free in Release 418.  It is no longer available as a standalone download.  Our 3D Vision Video Player will continue to be offered as a standalone download, for free, until the end of 2019.

Exceptions:
  1. Notebooks supporting Hybrid Power technology are not supported (NVIDIA Optimus technology is supported).
  2. The following Sony VAIO notebooks are included in the Verde notebook program: Sony VAIO F Series with NVIDIA GeForce 310M, GeForce GT 330M, GeForce GT 425M, GeForce GT 520M or GeForce GT 540M. Other Sony VAIO notebooks are not included (please contact Sony for driver support).
  3. Fujitsu notebooks are not included (Fujitsu Siemens notebooks are included).

[링크 : https://www.nvidia.com/ko-kr/drivers/details/145988/]

 

555.85 에서 425.31로 다운드레이드!

 

그 와중에 phys 도 중단되었는지 버전 차이가 별로 없다.

 

NVIDIA Stereo controller 에서

NVIDIA Stereoscopic 3D USB controller로 이름이 바뀐다.

 

2017년 11월 28일자.

 

심심해서 리눅스에서 연결해보니 Vendor specific class 라.. 이건 또 머래

[   52.022936] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
[   52.123750] usb 1-1.2: New USB device found, idVendor=0955, idProduct=0007, bcdDevice= 3.00
[   52.123772] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   52.123781] usb 1-1.2: Product: NVIDIA stereo controller
[   52.123787] usb 1-1.2: Manufacturer: Copyright (c) 2008 NVIDIA Corporation
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M
    ID 1d6b:0002 Linux Foundation 2.0 root hub
    |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/8p, 480M
        ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
        |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, Driver=, 480M
            ID 0955:0007 NVIDIA Corp. 
Bus 001 Device 004: ID 0955:0007 NVIDIA Corp. NVIDIA stereo controller
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0955 NVIDIA Corp.
  idProduct          0x0007 
  bcdDevice            3.00
  iManufacturer           1 Copyright (c) 2008 NVIDIA Corporation
  iProduct                2 NVIDIA stereo controller
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0012
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              400mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           0
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass      0 
      bInterfaceProtocol      0 
      iInterface              0 

 

 

참 오랫만에 보는 그리고 단 한번 lg 3d tv로 성공했던 그 페이지

 

먼가 오작동하는지 번쩍번쩍 하길래 슈퍼슬로우로 해서 프레임넘기며 보니

우 -> 좌 순서로 점멸을 하나 싶기도 하고?

 

참 오랫만에 보는구만

 

4k 60hz에서 하려니 안되네.. 결국은 빔프로젝터 출동! 해야하나?

The kit is specially designed for 120 Hz LCD monitors, but is also compatible with CRT monitors (some of which may work at 1024×768×120 Hz and even higher refresh rates), DLP-projectors, 3LCD projectors and others. It requires a compatible graphics card from Nvidia (GeForce 200 series or later).

[링크 : https://en.wikipedia.org/wiki/Nvidia_3D_Vision]

[링크 : https://blog.naver.com/sptjjang/140124866226]

 

+

2026.02.07

 

드라이버 버전 낮추고, 해상도를 빔프로젝터 120Hz를 지원하는 1024x768로 변경.

 

빔 프로젝터 HDMI로 연결해서 시도. 3D vision 에 정상적으로 사용가능하다고 나온다.

 

그나저나 "내 디스플레이는 3D Ready  이지만 3D Ready로 감지되지 않습니다" 라는 문구가 나온다.

120Hz만 지원하면 무조건 지원한다는데.. 흐음.. 머지?

Posted by 구차니

nvidia 3d vision 구매할 기회가 생겨서 혹시 dlp ready랑 호환되나 궁금해져서 검색

[링크 : https://www.mtbs3d.com/forum/viewtopic.php?t=22730]

[링크 : https://github.com/lukis101/3DVisionAVR]

 

 

[링크 : https://goughlui.com/2014/01/17/active-shutter-3d-glasses-teardown-kogan-compatibility/]

 

[링크 : https://cmst.curtin.edu.au/wp-content/uploads/sites/4/2016/05/2011-17-woods-helliwell-3D-Sync-IR.pdf]

 

DLP ready는 3dtv쪽에서 되는게 없는 듯. 완전 프로토콜이 다른가?

[링크 : http://www.3dmovielist.com/3dglasses.html]

 

 

+

2026.02.07

DLP Link는 아무래도 흰색을 통해서 하는것 같고

nvidia는 ir 로 하는것 같아서 수광부의 부품이 완전 달라 안될 것 같다.

Posted by 구차니