Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Safety Waring to Firmware Instructions. #230

Open
boyddotee opened this issue Jun 8, 2022 · 1 comment
Open

Add Safety Waring to Firmware Instructions. #230

boyddotee opened this issue Jun 8, 2022 · 1 comment

Comments

@boyddotee
Copy link

First up thank you, a very worthwhile upgrade works a lot better even without the extra sensor!

I may have overlooked it in but in following the instructions for the firmware, the oven got so hot it scorched the paper pad I had it stood on at the time 😅. Maybe add a little warning added to the instructions would be wise. Had assumed the elements wouldn't come on.

On another note, I to also experienced the blank screen issues reported without the lid on, it went away (there is no sensor that I could see) after installing it and rebooting a few times, might just be a quirk of the toolchain/micro that I'm not familiar with (worth downloading a copy of the firmware from the chip if you can before flashing)

@sevstels
Copy link

sevstels commented Jun 11, 2022

The catastrophic heating up of the oven during programming is a bug in the program. The author does not make the heating switch off before going into loading mode. This should be fix like this:

void IO_TurnOff_FAN_Heater(void)
{
IODIR0 = (1 << 8) | (1 << 9);
IOSET0 = (1 << 8) | (1 << 9);
}

`int main(void)
{
char buf[22];
int len;

IO_Init();
IO_TurnOff_FAN_Heater();

IO_JumpBootloader();

PLL_Init();
VIC_Init();
......
`

Similarly, the display does not work correctly, because the author did not calculate the time duration of the control pulses of the display control protocol. You can ask for the correct firmware > here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants