We REALLY need to stop letting football coaches teach history in public education.
Buford_T_Justice
joined 2 years ago
Joe Rogan Nods Along As Mel Gibson Claims His Friends Were Cured of Stage 4 Cancer By by ivermectin, fenbendazole (another animal dewormer), and methylene blue (a fabric dye)
Joe Rogan Nods Along As Mel Gibson Claims His Friends Were Cured of Stage 4 Cancer By by ivermectin, fenbendazole (another animal dewormer), and methylene blue (a fabric dye)
Because all the people taking it for COVID (and probably trying to cure cancer) were not getting it from the doctor. They were getting it from Farm supply stores . Everyone was calling it horse dewormer because that's what it was. They were not going to get a prescription. I know because I live amongst these dummies that were asking on Facebook which one to get from the farm supply, what flavor was best, etc.
‘Do not store guns in your oven’: Loaded gun stored in oven fires multiple rounds after getting overheated
view more: next ›
The way I have done it in the past. Rearrange all struct members from the largest to smallest data size. Do a sizeof the struct to make sure it is what you expect. You can look at the memory map too if your compiler provides it. Point an unsigned char (uint8_t) pointer to the first member of the struct or the variable name of the struct casted as a uint8_t. Then move the data into whatever the EEPROM or flash pages the data needs using the sizeof the struct and the size of the page for the non volatile storage. Sometimes I make a temporary array of the structs if I'm going to do several on a page. Then either copy directly into my ram overlay or just return the data if it is like a lookup or whatever.