Search found 42 matches
- Fri Apr 18, 2025 12:28 pm
- Forum: Bug Reports
- Topic: Compiler error PIC10F202
- Replies: 1
- Views: 1765
Compiler error PIC10F202
Hello everyone I get a compilation error on the PIC10F202 processor. I compiled the PIC10F, PIC12F series for testing, unfortunately there are compiler errors. I am sending the error about 10F202 below. It was fixed when I installed PICCALC string 4 version. Why is this happening? Target folder: C:\...
- Thu Apr 17, 2025 9:02 pm
- Forum: Bug Reports
- Topic: Compiler error (SOLVED) internal.c ver 3
- Replies: 4
- Views: 2743
Re: Compiler error
Yes, dear Martin, I'll take a look at my old computer.
I re-downloaded version 3 of Internals.c and it was fixed.
I was about to write to you about this and I just saw your message now.
Thank you very much for the information.
Sadık
I re-downloaded version 3 of Internals.c and it was fixed.
I was about to write to you about this and I just saw your message now.
Thank you very much for the information.
Sadık
- Thu Apr 17, 2025 1:39 pm
- Forum: Bug Reports
- Topic: Compiler error (SOLVED) internal.c ver 3
- Replies: 4
- Views: 2743
Re: Compiler error
Version 1.05 was working yesterday and yesterday I upgraded to version 1.06
After updating today morning, it started giving errors.
After updating today morning, it started giving errors.
- Thu Apr 17, 2025 1:10 pm
- Forum: Bug Reports
- Topic: Compiler error (SOLVED) internal.c ver 3
- Replies: 4
- Views: 2743
Compiler error (SOLVED) internal.c ver 3
Hello Dear Flowcode Family The software was compiling until today morning, but when I made the updates that came today, I started getting a compilation error. How can I see the library changes you made today? Everything was working normally until the update. Sadık Target folder: C:\ElektronikProjele...
- Thu Apr 17, 2025 12:14 pm
- Forum: General
- Topic: UART "SendString" command problem [SOLVED]
- Replies: 22
- Views: 6071
Re: UART "SendString" command problem
Sasi The problem is not in the C file, As far as I understand, there is an error in your configuration settings. Cyrstal Settings Can you write down the values of those settings? // Enter C code below this comment OSCCON = 0x70; //16MHz st_bit(OSCTUNE,PLLEN); uses the internal oscillator with this c...
- Thu Apr 17, 2025 10:54 am
- Forum: General
- Topic: UART "SendString" command problem [SOLVED]
- Replies: 22
- Views: 6071
Re: UART "SendString" command problem
Dear Sasi Can you remove the processor and try with a new processor? Maybe your processor is failing due to static electricity or something like that. I can understand that you are overwhelmed by this problem, it's very frustrating. I am asking to be sure of the oscillator speed of your processor, i...
- Wed Apr 16, 2025 8:39 pm
- Forum: General
- Topic: UART "SendString" command problem [SOLVED]
- Replies: 22
- Views: 6071
Re: UART "SendString" command problem
“AT+CNMI=2,0,0,0,0\r\n” load this command into a string for example: STR_TX[20] Make sure it is 20 characters. And try sending it as two separate command strings. STR_TX="AT+CNMI=2,0,0,0,0” 17 character STR_TX="\r\n” 4 character Please check the Configuration Settings. When you install, th...
- Wed Apr 16, 2025 8:49 am
- Forum: General
- Topic: UART "SendString" command problem [SOLVED]
- Replies: 22
- Views: 6071
Re: UART "SendString" command problem
Hello Dear Sasi Fake Microcontrollers Especially clone or refurbished microcontrollers, which are widely circulated in the market, may not work at the original Microchip quality. They often have stability problems with high-frequency operations (e.g. 115200 baud). Sometimes ID codes cannot be read o...
- Sun Apr 13, 2025 7:50 pm
- Forum: Bug Reports
- Topic: STM32F446 and MFRC522 Authenticate Function is not working.
- Replies: 3
- Views: 2462
Re: STM32F446 and MFRC522 Authenticate Function is not working.
I think I found the error. Error in this component ENABLE_CS; WriteByte(0x12); // FIFODataReg address (write) WriteByte(0x60); // Command: PICC_AUTH_KEY_A WriteByte(0x04); // Block address (example: 4. block) WriteByte(0xFF); // Key A (6 bytes) WriteByte(0xFF); WriteByte(0xFF); WriteByte(0xFF); Writ...
- Thu Apr 10, 2025 7:46 pm
- Forum: Bug Reports
- Topic: STM32F446 and MFRC522 Authenticate Function is not working.
- Replies: 3
- Views: 2462
Re: STM32F446 and MFRC522 Authenticate Function is not working.
https://www.flowcode.co.uk/wiki/index.php?title=Component:_RFID_(MFRC522)_(Wireless) Dear Martin I am doing it according to two examples here, by the way you can find the final version of the software in the attachment. In 2 software: I did it by increasing the BlockAdress value sequentially but un...