shawn's latest activity

  • S
    shawn replied to the thread CAN/Ethernet Conflicts.
    I’m really curious if you had more luck with the QNEthernet library? Here’s a link to the code and a Readme (but it’s also downloadable from inside the Arduino IDE; it’s just not obvious where to find the docs)...
  • S
    shawn replied to the thread CAN communication.
    (Forum side tip to make code blocks easier: you can use the “</>” button to put all your code in one block.)
  • S
    shawn replied to the thread Teensy 4.1 NE stock.
    The Ethernet version is practically identical, just with the PHY populated.
  • S
    I just released v0.31.0. Here's the changelog: ## [0.31.0] ### Added * Added `qnethernet_hal_fill_entropy(buf, size)` for filling a buffer with random values. * Added `EthernetClient::setConnectionTimeoutEnabled(flag)` to enable or disable...
  • S
    shawn replied to the thread Can't recognize platform.local.txt.
    They won’t work unless you also modify platform.txt per the instructions in that link.
  • S
    shawn replied to the thread Can't recognize platform.local.txt.
    See this: https://github.com/ssilverman/QNEthernet/blob/master/README.md#configuring-macros-using-the-arduino-ide
  • S
    shawn replied to the thread DNS lookup.
    One last-ish note: One of the pages has three buttons that point to three links. One points to the flex version, the client points to allrigs, and the server also points to allrigs. That allrigs file seems to contain both the client and server...
  • S
    shawn replied to the thread DNS lookup.
    Note that there seems to be an error with the file names: client and server both share a file name: MORCONI-ALLRIGS.zip
  • S
    shawn replied to the thread DNS lookup.
    Is there a GitHub repo I could browse? If not, which download is best? Are they all for the Teensy?
  • S
    shawn replied to the thread DNS lookup.
    I’d be interested in attempting to help solve this if you’re willing. What are the symptoms? Are you calling flush() when you need to send data right away? Are you sure you’re not including both libraries? (I’ve seen this last one cause issues.)
  • S
    shawn reacted to jmarsh's post in the thread TLSF for allocations instead of smalloc? with Like Like.
    It would be interesting to compare it to newlib's native allocator (e.g. regular malloc + free) by overriding _sbrk to return extmem. Similar to this but with appropriate heap start and end values.
  • S
    Best thing we ever did was remove PlatformIO; all it did was act as an annoying middle man. Given we use CLion we made our own cmake for Teensy and it has been great. We use the Arduino IDE and Teensyduino tools from cmake so we get all the...
  • S
    I recently stumbled across this linking error and also have no idea what the real issue is! In Arduino IDE all sibling derived classes linked fine including the troublesome one, but only that one derived class (a *very* thin adapter) would fail...
  • S
    shawn replied to the thread CAN/Ethernet Conflicts.
    Try the QNEthernet library instead of NativeEthernet. It uses a different approach under the hood, and works much better with other libraries.
Back
Top