Search found 102 matches

by khoih-prog
Wed Sep 22, 2021 11:14 pm
Forum: Libraries & Hardware
Topic: Portenta_H7_Slow_PWM Library
Replies: 0
Views: 3096

Portenta_H7_Slow_PWM Library

Portenta_H7_Slow_PWM Library How To Install Using Arduino Library Manager This library enables you to use Hardware Timers on an STM32H747XI-based Portenta_H7 board to create and output PWM to pins. Because this library doesn't use the powerful hardware-controlled PWM with channel / pin limitations,...
by khoih-prog
Wed Sep 22, 2021 11:00 pm
Forum: Libraries & Hardware
Topic: Portenta_H7_PWM Library
Replies: 2
Views: 4586

Portenta_H7_PWM Library

Portenta_H7_PWM Library How To Install Using Arduino Library Manager This library enables you to use Hardware Timers on an STM32H747XI-based Portenta_H7 board to create and output PWM to pins. The most important feature is they're purely hardware-based PWM channels. Therefore, the frequency can be ...
by khoih-prog
Sat Sep 18, 2021 3:18 am
Forum: General discussion
Topic: 2 PWM output
Replies: 4
Views: 6562

Re: 2 PWM output

You can try something similar to this code, just change the pins and/or Timer (if select manually) depending on the board uint32_t pins[] = { PA0, PB1 }; #define NUM_OF_PINS ( sizeof(pins) / sizeof(uint32_t) ) // 10% and 20% uint32_t dutyCycle[NUM_OF_PINS] = { 10, 20 }; // 5 and 10 Hz uint32_t freq[...
by khoih-prog
Thu Sep 16, 2021 10:41 pm
Forum: Libraries & Hardware
Topic: Portenta_H7_ISR_Servo library
Replies: 0
Views: 3681

Portenta_H7_ISR_Servo library

Portenta_H7_ISR_Servo Library How To Install Using Arduino Library Manager This library enables you to use Hardware Timer on an STM32H747XI-based Portenta_H7 board to control up to 16 independent servo motors . These hardware timers, using interrupt, still work even if other functions are blocking....
by khoih-prog
Thu Sep 16, 2021 1:56 am
Forum: Libraries & Hardware
Topic: Portenta_H7_TimerInterrupt Library
Replies: 0
Views: 2997

Portenta_H7_TimerInterrupt Library

Portenta_H7_TimerInterrupt Library How To Install Using Arduino Library Manager This library enables you to use Interrupt from Hardware Timers on an STM32H747XI-based Portenta_H7 board. It now enables you to use up to 16 different ISR-based timers , while actually consuming only 1 Hardware Timer . ...
by khoih-prog
Sat Aug 21, 2021 2:34 am
Forum: Libraries & Hardware
Topic: STM32_ISR_Servo Library
Replies: 0
Views: 3376

STM32_ISR_Servo Library

STM32_ISR_Servo Library How To Install Using Arduino Library Manager This library enables you to use 1 Hardware Timer on an STM32F/L/H/G/WB/MP1-based board to control up to 16 independent servo motors . Currently Supported Boards - Nucleo-144 - Nucleo-64 - Discovery - Generic STM32F0, STM32F1, STM3...
by khoih-prog
Fri Aug 20, 2021 7:07 pm
Forum: Libraries & Hardware
Topic: STM32_TimerInterrupt Library. Now supporting L5 and H7
Replies: 3
Views: 5251

STM32_TimerInterrupt Library. Now supporting L5 and H7

Releases v1.2.1

1. Add support to STM32L5 (NUCLEO_L552ZE_Q)
2. Verify OK with STM32H7 (NUCLEO_H743ZI2)

Releases v1.2.0

1. Add better debug feature.
2. Optimize code and examples to reduce RAM usage
3. Add Table of Contents
by khoih-prog
Tue Aug 17, 2021 8:46 pm
Forum: Libraries & Hardware
Topic: FlashStorage_STM32 Library to use emulated-EEPROM. Now supports STM32 core v2.0.0
Replies: 8
Views: 8703

Re: FlashStorage_STM32 Library to use emulated-EEPROM. Now supports STM32 core v2.0.0

FYI, for STMF1/F3, and CH/CS32F103, it's better now to use the new FlashStorage_STM32F1 Library Features The FlashStorage_STM32F1 library, provides a convenient way to store and retrieve user's data using emulated-EEPROM, from the non-volatile flash memory of STM32F1/F3, including non-genuine CH32F1...
by khoih-prog
Tue Aug 17, 2021 7:14 pm
Forum: Libraries & Hardware
Topic: FlashStorage_STM32F1 Library
Replies: 0
Views: 2576

FlashStorage_STM32F1 Library

FlashStorage_STM32F1 Library How To Install Using Arduino Library Manager Why do we need this FlashStorage_STM32F1 Library Features The FlashStorage_STM32F1 library, inspired from Cristian Maglie's FlashStorage , provides a convenient way to store and retrieve user's data using emulated-EEPROM, fro...
by khoih-prog
Sun Jun 20, 2021 4:50 am
Forum: General discussion
Topic: Problems writing to Client using EthernetWebServer_SSL_STM32 and SdFat libraries
Replies: 7
Views: 3652

Re: Problems writing to Client using EthernetWebServer_SSL_STM32 and SdFat libraries

Possibly too late, but for the record 1. Did you use the same SPI bus for SD-card and LAN8742A (pin 10-13) ? 2. Did you use the type of badly-designed SD card, which monopolizes the MISO signal and not to be tri-state when not selected via CS/SS? If so, you have to use the fix as described in Unable...

Go to advanced search