Search results

  1. C

    Forwarding data

    Ok, so if I do not care how the actual device responds and I just always send ACK back to the pc, how would I move forward from this point? I still want to send the exact same SET_REPORT to the actual device. As far as I understand I can not use the usb host library within the core right? If...
  2. C

    Forwarding data

    Hey, Im trying to forward data between the PC and the device thats connected to the usb host, using the teensy as a kind of proxy between it. Example: The teensy receives a set report request from the PC. How would I forward the request to the device that is connected to the usb host? static...
  3. C

    USB1_ENDPTCTRL1 not usable?

    Thanks for the quick response. May someone knows how to make use of endpoint 1, even if clearly documented as reserved? If something breaks in the future, its ok. This probably needs to be answered by Paul :/
  4. C

    USB1_ENDPTCTRL1 not usable?

    Hey, Im trying to use the USB1_ENDPTCTRL1 like the others USB1_ENDPTCTRL2, USB1_ENDPTCTRL3, etc. static void endpoint0_setup(uint64_t setupdata) { setup_t setup; uint32_t endpoint, dir, ctrl; const usb_descriptor_list_t *list; setup.bothwords = setupdata; switch...
  5. C

    Serial Data Not Appearing in Arduino Serial Monitor

    Thanks Paul, I was able to solve the problem with this info!
  6. C

    Serial Data Not Appearing in Arduino Serial Monitor

    That actually makes sense. Here is my custom usb type: #if defined(USB_CUSTOM) #define VENDOR_ID 0x16C0 #define PRODUCT_ID 0x0482 #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'} #define MANUFACTURER_NAME_LEN 11 #define PRODUCT_NAME...
  7. C

    Serial Data Not Appearing in Arduino Serial Monitor

    I did not make any changes except to the interfaces. I analyzed all of the USB traffic, and the behavior matches that of the predefined USB_HID type exactly - except that it does not display output on the serial monitor.
  8. C

    Serial Data Not Appearing in Arduino Serial Monitor

    Hi everyone, I'm working on a Teensy 4.1 project where I have created a custom USB type. My setup includes multiple HID interfaces, and I've also included the serial emulation interface (SEREMU_INTERFACE). The issue I'm encountering is that when I use my custom USB type, Serial.print() data...
  9. C

    Teensy without seremu interface

    I've been working on a custom USB type for my Teensy, aiming to replicate the functionality of the "Keyboard + Mouse + Joystick" USB configuration but without the SEREMU_INTERFACE. Everything functions correctly as long as the SEREMU_INTERFACE remains defined. However, as soon as I remove this...
  10. C

    How to receive raw HID using usb host?

    Wow, thanks! That's actually helping me alot!
  11. C

    How to receive raw HID using usb host?

    Hello, I am currently working on receiving and outputting raw HID data from a device (e.g., mouse or USB receiver) connected to the USB host of a Teensy 4.1. While I am confident that the wiring is correct - since I can successfully receive all data using the MouseController class - I encounter...
Back
Top