Will your flasher4 program also work on T4.1 ?
Type: Posts; User: alex-arc
Will your flasher4 program also work on T4.1 ?
Thank you vjmuzik!
i also tested with about 25k packets while refreshing the web page and nothing droped :)
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...
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
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...
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...
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
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...
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...
hey Lagelat.
you can change the channel order here:
const int LEDconfig = WS2811_RGBW | WS2811_800kHz;
these 4 are implemented
WS2811_RGBW
i have gotten firmware updating to work on t_3.1 t_3.5 and t_3.6 but only with very limited testing, and very few instructions, but you are welcome to have a look...
for those interested, i have made a table with my test results, from my quick test setup
https://github.com/alex-Arc/Ethernet_speed_test
Thanks KurtE.
after fixing the stuff in Ethernet and Socket i still cant get it to work.
SPIFIFO1 is mostly a clone of SPIFIFO (i was hoping for a quick fix) and looking at it, it looks like i...
Soooo..... :rolleyes:
Ethernet.cpp and socket.cpp uses SPI directly to.
i fogot to change them to SPI1
*sigh*
yes that is some of it
while (((KINETISK_SPI1.SR) & (15 << 12)) > (3 << 12)) ; // wait if FIFO full
should be
while (((KINETISK_SPI1.SR) & (15 << 12)) > ((1-1) << 12)) ; // wait if FIFO...
i am trying to use a Wiz850io with the T3.6 but on SPI1
i think i have changed all the things that need changing but it gets stuck in the right in the beginning when tying to read the chip type.
it...
i currently don't have the time to continue, but i'm planing to in the future.
i only tested with the 3.5 and it seemed to work fine, but i haven't tested it fully. therefor the line "This code is...
good call. it's
done :)
i also found that the .5 and .6 dons't have at flash command (0x06) for writhing a 4 byte word. instead they have a command (0x07) for writing 8 bytes. so i added this:
// program long word!
...
i found some info on the Teensy 3.5 and 3.6 and the selector looks like this now
#define RESERVE_FLASH (2 * FLASH_SECTOR_SIZE)
#elif defined(__MK20DX256__)//T_3.1 and T_3.2
#define FLASH_SIZE ...
Hey jonr :)
i have taken out everything but the flasher stuff and i am considering making it into a library, would that be ok and should keep it as a fork from you or make a new repository
link:...
As per the Art-Net spesification art-net.pdf you can only have 4 universes for every node. if you are using multicast and only have one receiver you don't need to worry about this limit. I am...
Thank you.
i had the flag wrong
rx_ring[i].moreflags.all = 0x80;
should be
rx_ring[i].moreflags.all = 0x8000;
Hello :)
I have trouble getting the k66 ethernet rx interrupt to trigger.
i am activating the interrupt and interrupt mask:
ENET_EIR = ENET_EIR_RXF;
ENET_EIR = ENET_EIR_RXB;
ENET_EIMR =...
when testing all the flags, instead of figuring out masks i found it easier to declare every bit.
now when trying to implement the flags i proper code that generates annoyingly long if statements...
for a quick over view and use example, look at the OCTOWS2812 lib https://github.com/PaulStoffregen/OctoWS2811
i am working on getting to know the new lan8720a ethernet module and have been digging through Poul's example https://github.com/PaulStoffregen/k66_ethernet
on page 1458 in the data sheet is a...
The Ethernet Module is designed to sit on top of the Teensy and the OctoWS board below so physically they should fit.
https://www.pjrc.com/store/wiz820_sd_adaptor.html
the Ethernet Module uses...
I am starting this thread so someone can yell at me if i do something stupid :o and share the results of my experiments, or should this be on the Beta Test thread?
I started looking at the SPI...
yes i'am really looking forward to the new k66, Paul do you have a specific ethernet shield in mind?
very cool Birk :)
here is a link to some rough cut video:...
hey birk.
i'm working on this project https://github.com/vertigo-dk/BlackLED
and have managed to take 18 art-net universes and out put them to a ws2811 like led using octoWS at about 44 fps.
It is...