Search found 316 matches

by IvanJeremic
23 Apr 2024 09:18
Forum: mikroBasic PRO for PIC General
Topic: uart_read() - no blocking call
Replies: 3
Views: 156

Re: uart_read() - no blocking call

Hi,

The codes that I sent are to be used as a reference.

You can use the UART example from the compiler as well, just move the jumpers on the board so that you are using the RS232 connector.

Regards,

Ivan.
by IvanJeremic
23 Apr 2024 09:06
Forum: Visual TFT General
Topic: Using VTFT and MikroC for Dspic
Replies: 7
Views: 1061

Re: Using VTFT and MikroC for Dspic

Hi,

Can you send me your entire project so I can take a look at what went wrong?

Regards,

Ivan.
by IvanJeremic
23 Apr 2024 08:54
Forum: IDE General
Topic: Read/Write program flash memory of PIC18F67K40
Replies: 4
Views: 212

Re: Read/Write program flash memory of PIC18F67K40

Hi,

You can still use the FLASH_Write function like the FLASH_Write_64.

You should be able to use the memory of the MCU with the available FLASH library.
flashmem.png
flashmem.png (22.92 KiB) Viewed 150 times
Regards,

Ivan.
by IvanJeremic
23 Apr 2024 08:28
Forum: mikroC PRO for ARM General
Topic: STM32H743ZIT6 problems
Replies: 2
Views: 168

Re: STM32H743ZIT6 problems

Hi,

The easiest way to fix the issue is by reinstalling the compiler since I am unsure what you have changed about it.

The USB Library is not supported by STM32H743ZIT6, you can try looking through some custom made libraries on Libstock.
https://libstock.mikroe.com/

Regards,

Ivan.
by IvanJeremic
22 Apr 2024 09:56
Forum: Visual TFT General
Topic: Using VTFT and MikroC for Dspic
Replies: 7
Views: 1061

Re: Using VTFT and MikroC for Dspic

Hi,

You can use the Events tab in VisualTFT.

Select a button, and then go to Events.
button.png
button.png (10.26 KiB) Viewed 930 times
Now add a function that you write that turn on a LED or a PORT next to the action that you want.

Regards,

Ivan.
by IvanJeremic
22 Apr 2024 09:46
Forum: mikroBasic PRO for PIC General
Topic: uart_read() - no blocking call
Replies: 3
Views: 156

Re: uart_read() - no blocking call

Hi,

You can find the examples for RS232 on the webpage of our RS232 Click boards.
https://www.mikroe.com/click/interface/rs232

The receiver examples should work for your project.

Regards,

Ivan.
by IvanJeremic
22 Apr 2024 09:39
Forum: IDE General
Topic: UART interrupt on Necto studio problem
Replies: 3
Views: 226

Re: UART interrupt on Necto studio problem

Hi,

The LOG library uses UART interrupts.

So you can use it in your project.

Most of our click board examples use the LOG library, so you can check them out for more information on how to use this library.

Regards,

Ivan.
by IvanJeremic
22 Apr 2024 09:31
Forum: IDE
Topic: Mikroe NFC Tag Click Board Issue
Replies: 1
Views: 107

Re: Mikroe NFC Tag Click Board Issue

Hi,

Can you explain in more detail what exactly the issue is?

I have attached an example for NFC Tag click:
mikroC PRO for ARM.zip
(358.2 KiB) Downloaded 6 times
Regards,

Ivan.
by IvanJeremic
19 Apr 2024 09:27
Forum: IDE
Topic: Code editor not working
Replies: 3
Views: 192

Re: Code editor not working

Hi,

Some other applications might be sharing the Port with Necto Studio, and that is why you are getting this issue.

You can resolve this by changing the port, go to File, Necto Preferences, Miscellaneous settings and change the Mongoose port.
necto1.png
necto1.png (33.99 KiB) Viewed 123 times
necto2.png
necto2.png (194.84 KiB) Viewed 123 times
Regards,

Ivan.
by IvanJeremic
19 Apr 2024 08:44
Forum: IDE Wish List
Topic: Necto designer portrait mode
Replies: 1
Views: 146

Re: Necto designer portrait mode

Hi,

At the moment Necto does not support changing the orientation of the screen.

It is planned to be added in a future update.

At the moment you can change the orientation of the Slide bar and the progress bar.
orient.png
orient.png (10.14 KiB) Viewed 122 times
Regards,

Ivan.
by IvanJeremic
19 Apr 2024 08:28
Forum: CODEGRIP programmer and debugger
Topic: Older version of CodeGrip
Replies: 4
Views: 321

Re: Older version of CodeGrip

Hi, Version 1.7.0 will not work with Mikro PRO compilers, CODEGRIP stopped being supported by Mikro PRO compilers some even before 1.7.0. using CODEGRIP on its own or with Necto Studio should work fine. Of course, if anyone experiences any issues they are encouraged to post a ticket or ask for help ...
by IvanJeremic
19 Apr 2024 08:18
Forum: IDE General
Topic: Read/Write program flash memory of PIC18F67K40
Replies: 4
Views: 212

Re: Read/Write program flash memory of PIC18F67K40

Hi, Make sure to erase to use FLASH Erase before writing anything to it. You can find the example on how to use FLASH Write below: unsigned short toWrite[64]; ... // initialize array: for (i = 0; i < 64; i++) toWrite[i] = i; // write contents of the array to the address 0x0D00: FLASH_Write_64(0x0D00...
by IvanJeremic
19 Apr 2024 07:58
Forum: ARM PRO Compilers
Topic: Help with mikroc pro for ARM
Replies: 6
Views: 254

Re: Help with mikroc pro for ARM

Hi, MikroC AI is a compiler, MikroSDK is the SDK the compiler uses. So when you choose MikroC AI you get to choose between the legacy SDK (from older compiler like MikroC PRO for ARM etc...) and the new SDK MikroSDK 2.11. Necto also supports other compilers like Microchip XC32, XC16, XC8, Clang, and...
by IvanJeremic
16 Apr 2024 09:27
Forum: ARM PRO Compilers
Topic: Help with mikroc pro for ARM
Replies: 6
Views: 254

Re: Help with mikroc pro for ARM

Hi, There is no example for Oximeter 5 click for Mikro PRO compilers. I understand wanting to stick with Mikro PRO compilers, but might i suggest you give Necto a try? Necto Studio supports PIC32, PIC, AVR, dsPIC, and ARM, it also contains a designer tab option, so you can easily use the TFT display...
by IvanJeremic
16 Apr 2024 09:19
Forum: mikroPascal PRO for PIC General
Topic: message: function size exceeds page boundaries [main]
Replies: 3
Views: 152

Re: message: function size exceeds page boundaries [main]

Glad you managed to solve the issue.

If you have further questions you can always contact us.

Regards,

Ivan.

Go to advanced search