lpc-rs / lpc-pac

Peripheral Access Crates for LPC microcontrollers
9 stars 9 forks source link

Integrate lpc82x-pac #2

Closed hannobraun closed 5 years ago

hannobraun commented 5 years ago

I've moved lpc82x-pac into this organization, but I've not integrated it into this repository yet. @rnestler, you mentioned that you moved the other PAC crates here with all their history. Could you do the same for lpc82x-pac?

If it's too much of a hassle, don't bother. I can either figure out how to do it myself, or just copy lpc82x-pac here without the history. Please let me know what you think.

rnestler commented 5 years ago

Could you do the same for lpc82x-pac?

Sure thing :+1: I'll try to do it tonight. @dbrgn Please remind me :wink:

dbrgn commented 5 years ago

I'll try :slightly_smiling_face:

We could also try updating lpc11uxx to the latest svd2rust master tonight.

rnestler commented 5 years ago

For reference:

git remote add lpc82x git@github.com:lpc-rs/lpc82x-pac.git
git fetch lpc82x
git checkout lpc82x lpc82x/master
mkdir lpc82x
git ls-tree -z --name-only HEAD | xargs -0 -I {} git mv {} lpc82x
git commit -m "Move everything into lpc82x subdirectory"
git checkout master
git merge  --allow-unrelated-histories  lpc82x
rnestler commented 5 years ago

Done.

hannobraun commented 5 years ago

Thank you!