Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support of STM32U0xx series #2491

Closed
doctek opened this issue Aug 21, 2024 · 22 comments · Fixed by #2495
Closed

Add support of STM32U0xx series #2491

doctek opened this issue Aug 21, 2024 · 22 comments · Fixed by #2495
Labels
enhancement New feature or request
Milestone

Comments

@doctek
Copy link

doctek commented Aug 21, 2024

Board description (please complete the following information):

  • Name: Generic STM32U073KB
  • Link to all relevant information: Reference is to the STM data for the part. Nothing special here.
    • Documentations
    • Schematics
    • Where this hardware can be purchased
  • ...

Note that user can add a STM32 based board following this wiki

Any contribution is welcome, so do not hesitate to submit a PR.

All new variant request will be moved to [New Variant] request list #722 and the related issue will be closed.

@fpistm
Copy link
Member

fpistm commented Aug 21, 2024

Hi @doctek
Before adding the support of the generic STM32U073, the STM32U0xx series have to be added.

@fpistm fpistm changed the title [New Variant] Generic STM32U073 Add support of STM32U0xx series Aug 21, 2024
@fpistm fpistm added the enhancement New feature or request label Aug 21, 2024
@doctek
Copy link
Author

doctek commented Aug 21, 2024

Thank you for your improvements to my request, fpistm! I appreciate it greatly.
Any idea on a time line for this?
Thanks!

@fpistm fpistm added this to the 2.9.0 milestone Aug 22, 2024
@fpistm
Copy link
Member

fpistm commented Aug 22, 2024

Hi @doctek
I've made a first part of the job this morning using a script dedicated to add new stm32 series.
I've got the Blink working on a Nucleo U083RC.
I will do the PR this afternoon for basic support feel free to test on your side and give your feedback.

@fpistm fpistm mentioned this issue Aug 22, 2024
15 tasks
@doctek
Copy link
Author

doctek commented Aug 22, 2024

This is amazing! I can' imagine how you were able to do this so quickly!!
Of course I will gladly test your work on my STM32U073KB. I've read the instructions on Using the GIT Repository and I'm pretty confident I can follow that. The only thing I'm not sure of is what version to clone. What is the new version number?
Thank you for your hard work and rapid response!

@fpistm
Copy link
Member

fpistm commented Aug 22, 2024

You can fetch the PR or use my branch on my fork.

@doctek
Copy link
Author

doctek commented Aug 23, 2024

Obviously, I'm not the GIT pro that you are, so let me make my question very clear.
In the wiki entry for "Using git repository", Step 3 says I should clone the new version using this command:
git clone https://github.com/stm32duino/Arduino_Core_STM32.git
What should I put in for ?

Thanks, sorry for being stupid.

       -jim

@doctek
Copy link
Author

doctek commented Aug 24, 2024

Hmm. That last posting didn't come through very clearly. I'm very sorry for that, although I don't know exactly what caused it.
The wiki reference should have been git clone [https://] [github.com/] [stm32duino/Arduino_Core_STM32.git] [<[version]>]
Hopefully, I've broken the command up enough that it will post correctly.
My question is: What should I put in for [version]?

Thanks and sorry for messing up the last post and not noticing it!
-jim

@fpistm
Copy link
Member

fpistm commented Aug 24, 2024

Hi @doctek
Sorry was OoO yesterday. Version is the cire version. So 2.8.1.

@doctek
Copy link
Author

doctek commented Aug 24, 2024

Following the instructions, I deleted the 2.8.1 files that I had and cloned the latest version.
When I started Arduino, I do not see any STM board choice that is for the U073. What am I missing?
Looking at the git files for 2.8.1, I don't see any reference to merging #2495. Makes ;me think that I am not cloning the correct version. Again, I'm not a git power user! Can you tell me what I'm doing wrong?
Thanks for your patience!
-jim

@fpistm
Copy link
Member

fpistm commented Aug 26, 2024

PR #2495 is not merged.
As stated you can:

[alias]
    pr = "!f() { git fetch -fu ${2-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"

when added you can simply do on the git repo:
git pr 2495

@doctek
Copy link
Author

doctek commented Aug 27, 2024

I'm trying real hard to follow your instructions.
Here's what I did. You'll have a good laugh at my git newbee errors!
First, I tried to clone your repository. I deleted 2.8.1 and issued this command:
git clone https://github.com/fpistm/Arduino_Core_STM32
I tried to clone the complete link you gave https://github.com/fpistm/Arduino_Core_STM32/tree/STM32CubeU0_addition, but that wouldn't work.
Then I modified the file .git/config to add the [alias] for pr.
Then I issued this command:
git pr 2495
Result:
fatal: couldn't find remote ref refs/pull/2495/head

I have no idea what to try next. Thank you for your patience.

@doctek
Copy link
Author

doctek commented Aug 27, 2024

Actually, I did
git clone https://github.com/fpistm/Arduino_Core_STM32 2,8,1
The rest is correct.

@doctek
Copy link
Author

doctek commented Aug 27, 2024

Progress! This command did it.
git clone --single-branch --branch STM32CubeU0_addition https://github.com/fpistm/Arduino_Core_STM32.git 2.8.1
I fired up Arduino and there is now a generic STM32U0 board type!
Of course, it's never quite that simple. I'm using an STM32U073KBU, not any of the STM32U73R versions listed. I think I can bend one of these enough to let me test the code. I'll keep you posted.
Again, many thanks for your support!

@doctek
Copy link
Author

doctek commented Aug 27, 2024

OK, I did some more poking around in variants directory and found the U073KBU variant! I think a little work on the boards file will get this working for now.

@fpistm
Copy link
Member

fpistm commented Aug 27, 2024

git pr alias is to fetch a PR on the official repo. So you have to clone the official repo not my fork. Anyway cloning my fork do the same and it is easy to fetch update.

@doctek
Copy link
Author

doctek commented Aug 28, 2024

Happy Dance time! My STM32U073KBU board blinks a led!
Here's what I had to do:

  • must use arduino-cli. The Arduino ide doesn't see any 073 boards except the R versions. Efforts to add names to the boards.txt file didn't work.
  • must add ldscript.ld to the variants file for the U073 boards.
  • must update STM32CubeProgrammer to the latest version to get the loader.
    With that done, it works! Can't wait for it to be properly integrated into Arduino, but I can keep working.
    Thank you for your excellent work!
    -jim

@fpistm
Copy link
Member

fpistm commented Aug 29, 2024

  • must use arduino-cli. The Arduino ide doesn't see any 073 boards except the R versions. Efforts to add names to the boards.txt file didn't work.

You probably need to clean up Arduino IDE cache.

@doctek
Copy link
Author

doctek commented Aug 29, 2024

Clearing the cache is a good suggestion. Googling for how to do that offered only one useful suggestion: remove ard* files from /tmp. So I tried that, but the new boards still do not appear, although I have added them to the boards.txt file. Obviously, there are additional files cached by Arduino, since it knew what sketch I was editing even after I deleted the ard* files and restarted Arduino.
Could you be so kind as to tell me how to purge the Arduino cache and make the board types appear?
Thank you!

@doctek
Copy link
Author

doctek commented Aug 30, 2024

I found more about clearing the Arduino cache. Using the sledge hammer approach of deleting the ~/.config/arduino-ide file and restarting did the trick. Now I see the U073K entries. I expect they will work as desired.
Is there a gentler way to clear the cache?
Thanks!

@fpistm
Copy link
Member

fpistm commented Aug 30, 2024

This is the method I used. An issue is opened on Arduino IDE to fix this issue.

@doctek
Copy link
Author

doctek commented Aug 30, 2024

That did it! I can program mySTMU073K parts from the Arduino IDE.
Thanks again for the excellent support and patient assistance.
-jim

@fpistm
Copy link
Member

fpistm commented Sep 3, 2024

For ref:
arduino/arduino-ide#1030 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

Successfully merging a pull request may close this issue.

2 participants