Search found 37 matches

by SeanH
16 Oct 2017 20:05
Forum: mikroBasic PRO for ARM General
Topic: Library for Flash3 Click
Replies: 3
Views: 2764

Re: Library for Flash3 Click

Hi Darko I also have the Flash Click with the EN25Q80B 8mb memory for testing which there are examples for MikroBasic. And after playing around, I managed to get the example code for the Flash Click working okay on the Flash3 Click Here some notes that may help others. Before moving onto the Flash3 ...
by SeanH
13 Oct 2017 16:23
Forum: mikroBasic PRO for ARM General
Topic: Library for Flash3 Click
Replies: 3
Views: 2764

Library for Flash3 Click

I have just purchased the Flash3 Click and went to download the library, but there is only ones for MicroC and not Mikrobasic.

Does the Flash library that comes with Mikrobasic compiler work with the Flash3 Click or do I have write my own routines?

Cheers

Sean
by SeanH
30 Sep 2017 20:37
Forum: mikroC PRO for ARM General
Topic: STM32F4 timer external clock source mode
Replies: 2
Views: 2745

Re: STM32F4 timer external clock source mode

You may need to set your Alternate function for the GPIO pin you want to assign to Timer9 depending on the processor you are using.

Cheers

Sean
by SeanH
30 Sep 2017 18:55
Forum: mikroC PRO for ARM General
Topic: STM32F042K6 UART1_Init_Advanced question
Replies: 5
Views: 2992

Re: STM32F042K6 UART1_Init_Advanced question

I would be interested in the reply if possible as having issues with the STM32F04 UART as well, when receiving data. If the UARTx_Init_Advanced is not actually setting the correct values, then this could also explain why the UART is not working for me as expected.. Same UART code I have here works o...
by SeanH
03 Aug 2016 10:04
Forum: Visual TFT General
Topic: Compile touchpad issues usnign STM32F411
Replies: 5
Views: 6238

Re: Compile touchpad issues usnign STM32F411

Hi Biljana

Just checked and all compiles now with no errors :)

Many thanks for this quick fix.

Regards

Sean
by SeanH
01 Aug 2016 12:56
Forum: Visual TFT General
Topic: Compile touchpad issues usnign STM32F411
Replies: 5
Views: 6238

Re: Compile touchpad issues usnign STM32F411

I have setup the same settings on the Welcome World example that comes with Visual TFT

Same errors still and have attached project with STM32F411 GPIO settings I used in first post.

Does it compile okay your end ?

Regards

Sean
by SeanH
01 Aug 2016 12:04
Forum: Visual TFT General
Topic: Compile touchpad issues usnign STM32F411
Replies: 5
Views: 6238

Re: Compile touchpad issues usnign STM32F411

Hi Biljana

Thanks for the quick reply.

I purchased Visual TFT last week, so is the latest version.

Also I had version 4.9 of MiKroBasic installed, but removed this morning and re-installed.

Sorry to say I get the same errors and have attached screenshot.

Regards

Sean.
by SeanH
30 Jul 2016 17:14
Forum: mikroBasic PRO for ARM General
Topic: TFT - PROTO Board with ARM
Replies: 2
Views: 5898

Re: TFT - PROTO Board with ARM

Thanks Flip
by SeanH
30 Jul 2016 17:12
Forum: Visual TFT General
Topic: Compile touchpad issues usnign STM32F411
Replies: 5
Views: 6238

Compile touchpad issues usnign STM32F411

Using Visual TFT to create code for a STM32F411 processor and TFT using ILI9341_8bit driver. When I go to compile in MikroBasic for ARM I get the following errors. 68 438 Call signature does not match the function definition signature 'GPIO_Config' __Lib_TouchPanel_TFT.mpas I have configured it for ...
by SeanH
26 Jul 2016 18:50
Forum: mikroBasic PRO for ARM General
Topic: TFT - PROTO Board with ARM
Replies: 2
Views: 5898

TFT - PROTO Board with ARM

Hi

I was looking at the Mikroe TFT - PROTO Board and it only shoes samples for AVR and Pic's.

Is there a library in MicroBasic for this TFT ?

Cheers

Sean
by SeanH
06 Jan 2016 15:57
Forum: mikroBasic PRO for ARM General
Topic: SPI issues on STM32F411
Replies: 3
Views: 8133

Re: SPI issues on STM32F411

Hi Aleksandar This was on the NUCLEO-F411RE board with our own expansion PCB connected to it. http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260320 I never managed to get the SPI2 working and in the end used SPI4 and we changed expansion PCB to suit new pins. So we have SPI1, SPI3, ...
by SeanH
06 Jan 2016 00:14
Forum: mikroBasic PRO for ARM General
Topic: ADC channel higher than 9 ?
Replies: 2
Views: 4110

Re: ADC channel higher than 9 ?

Thanks Aleksandar

Looking forward to a fix as will save me having to juggle pins around in the circuit design.


Cheers

Sean
by SeanH
03 Jan 2016 15:23
Forum: mikroBasic PRO for ARM General
Topic: ADC channel higher than 9 ?
Replies: 2
Views: 4110

ADC channel higher than 9 ?

Using the STM32F411 which has 16 ADC channels. The compiler alows me to enter ADC_Set_Input_Channel(_ADC_CHANNEL_9) But if I try 10 or higher I get the red swiggly lines under the command. ADC_Set_Input_Channel(_ADC_CHANNEL_10) Upgraded to version 4.7.0 and still the same. Any suggestrions ? Sean
by SeanH
09 Dec 2015 19:38
Forum: mikroBasic PRO for ARM General
Topic: SPI issues on STM32F411
Replies: 3
Views: 8133

SPI issues on STM32F411

Hi Having issues getting SPI2 to work on a STM32F411 processor. SPI1, SPI3 and SPI5 work really well using the following code to set them up. 'SPI1 works great using PA5, PA6 and PA7 SPI1_Init_Advanced(_SPI_FPCLK_DIV2, _SPI_MASTER or _SPI_16_BIT or _SPI_CLK_IDLE_High or _SPI_FIRST_CLK_EDGE_TRANSITIO...
by SeanH
12 Sep 2015 19:29
Forum: mikroBasic PRO for ARM General
Topic: MINI-M4 PWM
Replies: 2
Views: 5713

Re: MINI-M4 PWM

Think this is right ! PB7 is used for TIM4_CH2 PA1 or PB3 is used for TIM2_CH2 Try PWM_TIM2_Start(_PWM_CHANNEL2, &_GPIO_MODULE_TIM2_CH2_PA1); //Pin PA1 (15) PWM_TIM2_Start(_PWM_CHANNEL2, &_GPIO_MODULE_TIM2_CH2_PB3); //Pin PB3 (55) If you are not getting exact output on scope, make sure you have your...

Go to advanced search