Thanks for support stm32h7 series and question

General discussion on mikroPascal PRO for ARM.
Post Reply
Author
Message
simonsayz
Posts: 30
Joined: 09 Feb 2012 06:32
Location: south kroea
Contact:

Thanks for support stm32h7 series and question

#1 Post by simonsayz » 21 May 2019 04:09

Thanks for the compiler update.

I found the compiler support stm32h7 in today.

But, I can't found any example for stm32h7.. and schemes ( *.cfgsch)

How to config "NUCLEO-H743ZI" ?

Thanks

User avatar
filip.grujcic
Posts: 822
Joined: 14 May 2018 08:34

Re: Thanks for support stm32h7 series and question

#2 Post by filip.grujcic » 22 May 2019 08:44

Hello,

Unfortunately, we do not have any examples for H7 series as of now.
Regarding configuration, please refer to the reference manual:
https://www.st.com/content/ccc/resource ... 314099.pdf

Kind regards,
Filip Grujcic

simonsayz
Posts: 30
Joined: 09 Feb 2012 06:32
Location: south kroea
Contact:

Re: Thanks for support stm32h7 series and question

#3 Post by simonsayz » 04 Jun 2019 16:31

Hello, Again...

with help from stefan.filipovic in c forum.
I found the new scheme, def

C Compiler works fine.
But Pascal Compiler don't works yet.

Test Env.
- Nucleo H743
- Same Internal 60Mhz Scheme
- Same Code

What's wrong with me ?
Thanks in advance.


C Version

Code: Select all

//
// Ref.
//    1. Scheme  https://forum.mikroe.com/viewtopic.php?f=178&t=74731
//               STM32H743ZI_HSI_64mHz_to_400mHz.cfgsch
//    2. Defs    https://forum.mikroe.com/viewtopic.php?f=224&t=74695
//               stefan.filipovic [ STM32H743ZI.zip ]
//               STM32H743ZI.mlk -> c:\Users\Public\Documents\Mikroelektronika\mikroC PRO for ARM\Defs\
//
void main() {
  GPIO_Digital_Output(&GPIOB_BASE, _GPIO_PINMASK_7 ||
                                   _GPIO_PINMASK_14 );

  while(1) {
   GPIOB_ODR = ~GPIOB_ODR;
   Delay_ms(100);
  }
  
}
Pascal Version

Code: Select all

//
// Ref.
//    1. Scheme  https://forum.mikroe.com/viewtopic.php?f=178&t=74731
//               stefan.filipovic [ Schemes.zip ]
//               STM32H743ZI_HSI_64mHz_to_400mHz.cfgsch
//    2. Defs    https://forum.mikroe.com/viewtopic.php?f=224&t=74695
//               stefan.filipovic [ STM32H743ZI.zip ]
//               STM32H743ZI.mlk -> c:\Users\Public\Documents\Mikroelektronika\mikroPascal PRO for ARM\Defs\
//
program Simple;

begin
 GPIO_Digital_Output(@GPIOB_Base, _GPIO_PINMASK_7 or
                                  _GPIO_PINMASK_14 );
 while (true) do
  begin
   GPIOB_ODR := Not(GPIOB_ODR);
   Delay_ms(100);
  end;
end.
Attachments
01.Simple_pas.zip
(262.08 KiB) Downloaded 96 times
01.Simple_c.zip
(520.68 KiB) Downloaded 108 times

ilayaraja01
Posts: 6
Joined: 19 Feb 2020 14:29

Re: Thanks for support stm32h7 series and question

#4 Post by ilayaraja01 » 15 Mar 2020 11:15

plz share scheme file for STM32H750VB I'm using MIKRO C pro for arm VER 6.2.0 Kindly help me solve my issue I'm looking more then 1 week

simonsayz
Posts: 30
Joined: 09 Feb 2012 06:32
Location: south kroea
Contact:

Re: Thanks for support stm32h7 series and question

#5 Post by simonsayz » 15 Mar 2020 18:35

ilayaraja01 wrote:plz share scheme file for STM32H750VB I'm using MIKRO C pro for arm VER 6.2.0 Kindly help me solve my issue I'm looking more then 1 week

Hello,

Some examples for stm32h743 & MikroE Pascal 6.2


__Mikroe_Patch_v6.2 (Scheme, Patch , mlk )
__STM32H7xx_HAL
01.LED
02.LED_USB
03.USB_BootLoader
04.Ethernet

Tested Nucleo H743zi (400Mhz), Nucleo H743zi2 (480Mhz).

This code is not finished, but It may be starting point.
Attachments
Examples_H743zi_2020.03.19.zip
(4.04 MiB) Downloaded 105 times

Post Reply

Return to “mikroPascal PRO for ARM General”