Search found 75 matches

by Brendan
Sat Jan 17, 2026 9:51 pm
Forum: Bug Reports
Topic: RESOLVED: STM32F411 Black Pill - I2C Ch2 mapping
Replies: 2
Views: 299

Re: STM32F411 Black Pill - I2C Ch2 mapping

Thank you Leigh, that worked, and I'll simply ignore the prevailing PB11 in the list.

There appears to be similar errors across other 32F411 definitions, though I can now move on following your early support.

Thanks again and best regards,
Brendan
by Brendan
Sat Jan 17, 2026 4:26 pm
Forum: Bug Reports
Topic: RESOLVED: STM32F411 Black Pill - I2C Ch2 mapping
Replies: 2
Views: 299

RESOLVED: STM32F411 Black Pill - I2C Ch2 mapping

I'm using multiple STM32F411 Black Pill boards in a project, selected in FC build options, though the only mappable pin available in FC for I2C Ch2 SDA is PB11, which doesn't exist on the Black Pill (only available on the BGA 100-pin package). I believe CH2 I2C SDA should actually map to PB3. I have...
by Brendan
Wed Jan 14, 2026 7:37 am
Forum: General
Topic: Using C code generated in FlowCode in other IDE's
Replies: 4
Views: 1910

Re: Using C code generated in FlowCode in other IDE's

Hi guys. An old post I know, though with the advent of cherished FC11, and being professionally forced down an ever-narrowing corridor to integrate Flowcode projects with micro-ROS on (supported) STM32F407, an example tutorial would be fantastic. Setting up the CubeMX IDE appears to be pretty-well c...
by Brendan
Sat Dec 27, 2025 8:00 pm
Forum: Projects - Embedded
Topic: SOLVED: Reading AS5600 registers with ARM using I2C Transactions
Replies: 7
Views: 689

Re: Reading AS5600 registers with ARM using I2C Transactions

Hi Martin. Thank you again, though happy to report that AS5600 I2C transactions are now working. Following your suggestions, I just needed to send the TransactionWrite and TransactionRead in suggested order, but without inhibiting the Stop/Start by not setting bit 15 (per Leigh's suggestion). I prov...
by Brendan
Sat Dec 27, 2025 5:34 pm
Forum: Projects - Embedded
Topic: SOLVED: Reading AS5600 registers with ARM using I2C Transactions
Replies: 7
Views: 689

Re: Reading AS5600 registers with ARM using I2C Transactions

Thank you Leigh. Again, entirely appreciated.

Still having issues, though I'm sure I'll get there eventually with further experimentation, with success followed by the usual epiphany :D

All the best,
Brendan
by Brendan
Sat Dec 27, 2025 4:04 pm
Forum: Projects - Embedded
Topic: SOLVED: Reading AS5600 registers with ARM using I2C Transactions
Replies: 7
Views: 689

Re: Reading AS5600 registers with ARM using I2C Transactions

Thank you so much Martin for your interest and early reply.

I really do appreciate your time and support, enabling me to continue a challenging multi-axis automata project in the time remaining before returning to work.

Best regards,
Brendan
by Brendan
Sat Dec 27, 2025 2:28 pm
Forum: Projects - Embedded
Topic: SOLVED: Reading AS5600 registers with ARM using I2C Transactions
Replies: 7
Views: 689

SOLVED: Reading AS5600 registers with ARM using I2C Transactions

Following considerable frustration fruitlessly attempting to get I2C working on ARM (STM32F411) to simply address an AS5600 hall position sensor in hardware mode, whilst working perfectly in software mode, I happened to chance upon mention that I2C will only operate in transaction mode on ARM. To cu...
by Brendan
Sun Dec 21, 2025 1:40 pm
Forum: Feature Requests
Topic: Duplicate variables, as with macros
Replies: 6
Views: 674

Re: Duplicate variables, as with macros

Hi Martin. A way to create multiple variables without resorting to the mouse would also be good - note that you can do 'a,b,c[12],d,e' as the variable name and in this case it will create a,b,d,e and c[12] - where the variables have the same underlying type (byte, int etc) This is certainly somethin...
by Brendan
Sun Dec 21, 2025 1:54 am
Forum: Feature Requests
Topic: Duplicate variables, as with macros
Replies: 6
Views: 674

Re: Duplicate variables, as with macros

Thanks Martin, Steve. I mostly use local vars where possible (e.g. local loop counters and such), though others are global for system-wide control so that values are preserved when macros close, or may be updated by ISRs and cleared by the main program (e.g. UART string indexers, etc). Often I have ...
by Brendan
Thu Dec 18, 2025 2:50 pm
Forum: Feature Requests
Topic: Duplicate variables, as with macros
Replies: 6
Views: 674

Duplicate variables, as with macros

Hello team. I'm in the process of creating a batch of additional new variables to accompany a number of previously-created associated variables. I presently need to copy created variable names to save time manually entering the names of similar new variables, each created one-by-one with associated ...