English 中文(简体)
是否有任何人知道哪一个非常基本的理论? [闭门]
原标题:Does anybody know any very basic stm32 tutorials? [closed]

Recently I ve started on a project which requires a Cortex M3 processor. I have some previous experience with 8bit AVR microcontrollers, so I was hoping for a not to big transition.

So I ve bought a STM32L-Discovery kit (since low power is an important point) and started looking at some examples. However, I m completely stuck at the beginning. When programming with AVR it was all very straightforward, just by including 2 or 3 files it was possible to write a simple main.c for like say a blinking LED.

然而,Immane EWARM(使用Im)中的例子都非常分散,因此很难开始。 在大多数在线辅导中,我也存在同样的问题。

没有人知道可能有助于我的任何简单辅导。 I m 我想到的是“ARM Cortex-M3的确定性指南”,因为它似乎非常建议。

这可能是一个非常棘手的问题,但我现在 st太久,我感到绝望。

问题回答

我完全同意你的意见。 我也从头开始,我发现甚至难以平分表面! 在事先知情同意方面,我有一些良好经验,但是,在同行审议机制方面,学习曲线确实很 steep。

STM32F4Discovery 我正在利用ST提供一些实例。 从简单的杂草开始。 我正在通过主要文件,每个例子都得到很好的评论,并试图从那里了解。 他们拥有一个外围图书馆,以便查找并了解这些功能的申报。 我学习了这方面的一些东西。

还确保你参考你正在使用的实际管理手册。

我认为,这浪费了你花费多少时间。 就我而言,我没有时间通过手册,了解一切如何奏效。 如果你确实找到一些好消息,请把他们说!

在结束发言时,我看到了两 of的有用信息:

http://www.micromouseonline.com/ category/stm32/#axzz1wMO2VjAI

I would suggest using CMSIS and standard peripheral library for programming ARM Cortex. Here are some tutorials on how to set up things and start writing code: http://www.embedds.com/arm-cortex-tutorials/





相关问题
I2C, pullup resistors (STM32 discovery)

I am sending my data trought I2C (using DMA every 1s). I´ve added two pullup-resistors to SCK and SDATA. There are now slaves, so because no respond, master send only slave adress and thats all. Its ...

STM32F103 microcontroller CAN messages

I am wondering if anyone is familiar with any STM32f10x micro-controllers? If so, I am having some problems configuring a CAN driver. I can run the demo code, which is set to a loop_Back mode, but I ...

how to program the STM32 flash using openOCD and gdb

I m using an Olimex ARM-USB-OCD dongle with openOCD and GDB to program and debug an stm32f103 micro. The IDE I m using came from the Olimex dev-kit CD and makes use of eclipse ganymede. I can load a ...

Example code for ARM Cortex M3 based MCUs?

More specifically the STM32F107. I could barely find any code on ST s website, not even downloadable libraries (though I have found mention of some that indicates that they should exist?). This ...

STM32 printf and RTC

* UPDATE * Here is what I found. Whenever I had that function in there it wouldn t actually make the code lock up. It would actually make the read RTC I²C function very slow to execute, but the code ...

STM32 I2C1 Start bit not set on SR1 register

I am trying to program the stm32 to talk to my i2c EEprom, but it seems like everytime I say: I2C_GenerateSTART(I2C1, ENABLE); while( !(I2C_CheckEvent(I2C1, I2C_EVENT_MASTER_MODE_SELECT)) ); the ...

热门标签