Recent content by alex-arc

  1. A

    CrashReport , addr2line returns ??:?

    I had the same problem but I compile from platformio, witch per default runs without the -g build flag that is neede for addr2line to work this is the thread that got me that answer https://forum.pjrc.com/threads/67998-Using-CrashReport-on-Mac-OS?p=291251&viewfull=1#post291251 and i think the...
  2. A

    T 4.1 FlexCan and Native Ethernet crash

    I think it is solved now. this line seems to have be the problem CAN_message_t *send_buf = new CAN_message_t[frame_num]; I did try to wrap it in __disable_irq() __enable_irq() because maybe the memory allocation was being interupted by an ethernet event, but that did not work I then...
  3. A

    T 4.1 FlexCan and Native Ethernet crash

    I got addr2line to work. I had to add build_flags = -g to platform.ini (look here for more info https://forum.pjrc.com/threads/67998-Using-CrashReport-on-Mac-OS?p=291308&viewfull=1#post291308) it points to .platformio\packages\framework-arduinoteensy\libraries\FlexCAN_T4/FlexCAN_T4.h:37 #if...
  4. A

    T 4.1 FlexCan and Native Ethernet crash

    Yes it is the debug print from ..\cores\teensy4\debug\printf.h I have tried both NativeEthernet and QNEthernet. QNEthernet works a bit longer than NativeEthernet. i am on platformio with teensy 4.14.0 CrashReport: CrashReport: A problem occurred at (system time) 16:19:17 Code was...
  5. A

    T 4.1 FlexCan and Native Ethernet crash

    I am trying to send data to the Can bus over ethernet things run fine for a while and the it craches and I get this message from the Debug/print.h need to switch to alternate clock during reconfigure of ARM PLL USB PLL is running, so we can use 120 MHz Freq: 12 MHz * 66 / 4 / 1 ARM...
  6. A

    Over the air updates

    Will your flasher4 program also work on T4.1 ?
  7. A

    Teensy 4.1 UDP and web server drop packets

    Thank you vjmuzik! i also tested with about 25k packets while refreshing the web page and nothing droped :)
  8. A

    Teensy 4.1 UDP and web server drop packets

    I have now tried with 1.54-beta-3 (Arduino 1.8.13) both only using the the included library of NativeEthernet and FNET or the newest from github and i still have the same problem here is the test code #include <NativeEthernet.h> #include <NativeEthernetUdp.h> // Enter a MAC address and IP...
  9. A

    Teensy 4.1 UDP and web server drop packets

    i am using the FNET that come with Teensyduino 1.53 and NativeEthernet from github https://github.com/vjmuzik/NativeEthernet i will try the beta now
  10. A

    Teensy 4.1 UDP and web server drop packets

    Hello I am trying to receive UDP messages and run a web server at the same time using the new T4.1 and native ethernet the server works fine but it drops a lot of udp messages. udp also works fine by it self any ideas?
  11. A

    Over the air updates

    I don't have a T_4.0 yet But i never got it to work on the T_3.6 because of the high clock speeds and needing to clock down before writing to flash. I am guessing it is the same for the T_4.0 There is most likely a way around it but i never found it. In good news i have used this version of the...
  12. A

    Ethernet on T3.6 SPI1 with FIFO

    i think it was mostly just switching from SPI to SPI1 in socket.cpp and w5100.cpp https://github.com/alex-Arc/Ethernet/tree/Alternet_SPI_pin
  13. A

    Teensy 3.2 octows2811

    all the info you need about Octo is here https://www.pjrc.com/store/octo28_adaptor.html and her https://www.pjrc.com/teensy/td_libs_OctoWS2811.html it looks like vixen can output using USB so check out the octo VideoDisplay example or it can output artnet, there are a couple of artnet to octo...
  14. A

    BlackLed problems with ws2812

    https://github.com/vertigo-dk/BlackLED BlackLED is an artnet and octows2811 combination, not a replacement and it is mostly for my own use. if you want to use Madrix try the develop branch https://github.com/vertigo-dk/BlackLED/tree/develop there is a Madrix implementation there but it is not...
  15. A

    OctoSK6812+Artnet+ 280ledsSK6812 x4: Blackled from Alex-Arc

    hey Lagelat. you can change the channel order here: const int LEDconfig = WS2811_RGBW | WS2811_800kHz; these 4 are implemented WS2811_RGBW WS2811_RBGW WS2811_GRBW WS2811_GBRW you could also swap them your self here: //write the dmx data to the Octo frame buffer uint32_t* dmxData =...
Back
Top