One month to italy, now at customs... the beta is to be written off.
Exp-tech is not an option. 17.85€ shipping.10€ upcharge to the real price. WHAT?
I ordered a couple on them, so relative shipping went down
One month to italy, now at customs... the beta is to be written off.
Exp-tech is not an option. 17.85€ shipping.10€ upcharge to the real price. WHAT?
Unfortunately I live in a non EU country. So, the whole customs trouble still exists.Meanwhile, I ordered some T4.1 from Exp-Tech.de, arrived via USP in no time. (No custom issue within Europe)
One month to italy, now at customs... the beta is to be written off.
Exp-tech is not an option. 17.85€ shipping.10€ upcharge to the real price. WHAT?
Actually Teensy in Italy cost 1.5 times up to 2 times the original price.
I think it is time to establish a PJRC store in Europe to cut out these profit-makers. I'd be happy to do that work, just because.
I decided I did not need it urgentlyTo be rfank,some packages on the way have been over 80 days.But the goods has leaving overseas in deed.
I can't give you a certain date,but I believe you'll receive it one day.We're also distressed for this problem.
Could you pls place a new order on our website with DHL shipping way if you need the displays urgently?
Mine was shipped by PJRC on April 28th. Turned around for several days in SF, then took a week to make it to LA where it was last scanned on May 17th. Thus, far from arriving here in France - deeply disappointed by USPS.
Correct,You can't blame them for transport cost from Germany to Italy. Transport cost within Germany is about EUR 4 which is quite standard.
I would never ask for UPS or other courier for small value shipments
Has Teensy 4.1 a Serial Number or Unique ID build in?
static void teensyMAC(uint8_t *mac)
{
uint32_t m1 = HW_OCOTP_MAC1; // T4 MAC
uint32_t m2 = HW_OCOTP_MAC0;
mac[0] = m1 >> 8;
mac[1] = m1 >> 0;
mac[2] = m2 >> 24;
mac[3] = m2 >> 16;
mac[4] = m2 >> 8;
mac[5] = m2 >> 0;
}
I got no problems to get 3 boards T4.1 here in Germany.Here, in Germany, ordered at exptech: two T4.1 did cost 63,28€ == 31.64€ for ONE Teensy 4.1 including shipping
PJRC sets some fuses in each T4 for unique ethernet MAC address and USB id,
in hardware/teensy/avr/cores/teensy4/usb_desc.c, num = HW_OCOTP_MAC0 & 0xFFFFFF;
and T4 mac
Code:static void teensyMAC(uint8_t *mac) { uint32_t m1 = HW_OCOTP_MAC1; // T4 MAC uint32_t m2 = HW_OCOTP_MAC0; mac[0] = m1 >> 8; mac[1] = m1 >> 0; mac[2] = m2 >> 24; mac[3] = m2 >> 16; mac[4] = m2 >> 8; mac[5] = m2 >> 0; }
I know about the MAC, but are there some other serial numbers. I found some articles they said HW_OCOTP_CFG0 and HW_OCOTP_CFG1 are used for a 64-bit ID. I want to update my TeensyID library https://github.com/sstaub/TeensyID
Register Value (dec) Value (hex)
HW_OCOTP_CFG0: 1736377647 (0x677F052F)
HW_OCOTP_CFG1: 540901842 (0x203D81D2)
HW_OCOTP_CFG2: 1342177427 (0x50000093)
HW_OCOTP_CFG3: 4325378 (0x00420002)
HW_OCOTP_CFG4: 0 (0x00000000)
HW_OCOTP_CFG5: 524312 (0x00080018)
HW_OCOTP_CFG6: 0 (0x00000000)
HW_OCOTP_MAC0: 3842750774 (0xE50BB936)
HW_OCOTP_MAC1: 1257 (0x000004E9)
I know about the MAC, but are there some other serial numbers. I found some articles they said HW_OCOTP_CFG0 and HW_OCOTP_CFG1 are used for a 64-bit ID. I want to update my TeensyID library https://github.com/sstaub/TeensyID
void usb_init_serialnumber(void)
{
char buf[11];
uint32_t i, num;
num = HW_OCOTP_MAC0 & 0xFFFFFF;
// add extra zero to work around OS-X CDC-ACM driver bug
if (num < 10000000) num = num * 10;
ultoa(num, buf, 10);
for (i=0; i<10; i++) {
char c = buf[i];
if (!c) break;
usb_string_serial_number_default.wString[i] = c;
}
usb_string_serial_number_default.bLength = i * 2 + 2;
}
usb_desc.c has this code for T_4.x serial number presented:
usb_desc.c has this code for T_4.x serial number presented:
Code:void usb_init_serialnumber(void) { char buf[11]; uint32_t i, num; num = HW_OCOTP_MAC0 & 0xFFFFFF; // add extra zero to work around OS-X CDC-ACM driver bug if (num < 10000000) num = num * 10; ultoa(num, buf, 10); for (i=0; i<10; i++) { char c = buf[i]; if (!c) break; usb_string_serial_number_default.wString[i] = c; } usb_string_serial_number_default.bLength = i * 2 + 2; }
T4.1
HW_OCOTP_CFG0 0x65f8296a
HW_OCOTP_CFG1 0xc19a9d2
HW_OCOTP_CFG2 0x50000029
HW_OCOTP_CFG3 0x420002
HW_OCOTP_CFG4 0x0
HW_OCOTP_CFG5 0x80018
HW_OCOTP_CFG6 0x0
HW_OCOTP_MAC0 0xe50186c4
HW_OCOTP_MAC1 0x4e9
T4.0
HW_OCOTP_CFG0 0x65f82946
HW_OCOTP_CFG1 0x352241d2
HW_OCOTP_CFG2 0x50000041
HW_OCOTP_CFG3 0x420002
HW_OCOTP_CFG4 0x0
HW_OCOTP_CFG5 0x80018
HW_OCOTP_CFG6 0x0
HW_OCOTP_MAC0 0xe509634c
HW_OCOTP_MAC1 0x4e9
T4.0
HW_OCOTP_CFG0 0x65f82946
HW_OCOTP_CFG1 0x294b41d2
HW_OCOTP_CFG2 0x5000001e
HW_OCOTP_CFG3 0x420002
HW_OCOTP_CFG4 0x0
HW_OCOTP_CFG5 0x80018
HW_OCOTP_CFG6 0x0
HW_OCOTP_MAC0 0xe50963a3
HW_OCOTP_MAC1 0x4e9
T4.0
HW_OCOTP_CFG0 0x65f82969
HW_OCOTP_CFG1 0xd4549d2
HW_OCOTP_CFG2 0x50000069
HW_OCOTP_CFG3 0x420002
HW_OCOTP_CFG4 0x0
HW_OCOTP_CFG5 0x80018
HW_OCOTP_CFG6 0x0
HW_OCOTP_MAC0 0xe508d7a3
HW_OCOTP_MAC1 0x4e9
A few notes about shipping, particularly international shipping...
The COVID-19 pandemic has really messed up freight world wide. There is a global shortage of air transportation. As a result, shipping times are taking much longer than normal. Express services like UPS, DHL, and FedEx are taking about 2 - 10 days longer than standard for delivery depending on the origin of the shipment. Postal services are taking much longer. The US Postal service has a list of several countries that it is not shipping to either because the destination country is experiencing service impacts due to the pandemic or because of the unavailability of transportation. For countries where the USPS has not suspended service, delivery times vary quite a lot depending on the operations level of the postal service of the destination country. To further add to the whole uncertainty of Air Mail delivery, the acceptance of international mail varies by origin country and regularly changes.
tl;dr - freight is a mess world wide due to COVID-19 and stuff is taking a long time to get to where it's going
HanRun HR911102A can probably work. [...] The PHY chip on Teensy 4.1 does all the impedance stuff internally [...]. Connect RDC and TDC together and use a 0.1 uF capacitor between RDC+TDC and GND on Teensy. Then just connect the 4 signals directly, no extra resistors or capacitors. Also connect the S1 & S2 ground pins directly to Teensy's GND. The LED output on Teensy 4.1 is active high, and it has the resistor built in. So if you want the LED to show link status, connect the LED output to pin 9 on HR911102A, and connect pin 10 to GND.