sundw2014 / u2f_stm32

2 stars 3 forks source link

which stm32 chip is used in this demo #1

Closed feiyue1206 closed 6 years ago

feiyue1206 commented 6 years ago

i want to learn and test this demo,but i donot find which stm32 chip is used in this demo? Can anyone help me?

sundw2014 commented 6 years ago

@feiyue1206 , I am sorry for the lack of a clear readme. I tested this project with an STM32F103RCT6. For more details about the chips can be used, please refer to https://github.com/sundw2014/u2f_stm32/blob/3354cdb89b9f2b2510155fb5fbf5e7df3550a4e5/Project/CodeSourcery/Makefile#L61

I think any chip of __stm32f10x_hd__ series can be used without any modification of the code.

If you want to use an __stm32f10x_md chip like STM32F103C8T6__, please modify the Makefile

SUBMDL   = stm32f10x_hd

to

SUBMDL   = stm32f10x_md

Welcome to update your result here!

feiyue1206 commented 6 years ago

3ks a lot