Posted on February 05, 2016 at 01:50I am using a STM32F072RB discovery board and trying to calculate the voltage on a pin (PA1). I attached VDDA to the pin and measured the voltage with a voltmeter and it is 2.97 V.The raw value that is read using a...
Posted on January 19, 2016 at 23:54On stm32f072xb (Discovery board), I am able to detect an interrupt on PA0.Using the example provided, I configured the external interrupt as such. EXTI->IMR = 0x0001; /* (3) */ EXTI->RTSR = 0x0001; /* (4) */ ...
Posted on January 05, 2016 at 20:55I am using the STM32F072B-Discovery board and used the CDC_Standalone example to communicate with the PC using a Virtual Serial Port. I am using the VCP driver from the website.I can send data from the microcontrol...
Posted on December 10, 2015 at 22:48I am new here. Starting using Nucleo-F072RB. I can see the Virtual Com Port on my PC when I connect USB cable to the ST-Link board. The ST-Link Debug device also shows up in device manager. I am able to flash the ...
Posted on February 03, 2017 at 22:52We had the same issue and Lubos' fixed worked. We added FF's to the end of the file to make it 8-byte aligned.Thanks Lubos.We also found that we can fix the hex file by padding the end of the file to make it 8-byt...
Posted on January 06, 2016 at 20:12I found documentation here:http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00108129.pdf I solved the issue for my particular needs by adding the following code. I didn't need ...
Posted on January 06, 2016 at 17:55Thanks. Is there any documentation on when CDC_Itf_Receive() is called. When is HAL_UART_TxCpltCallback() called? The one section in a README file that I found is: '' - 1 x Bulk OUT endpoint for transmitting data ...
Posted on December 11, 2015 at 17:50Thanks for the replies. Sorry for such basic issues.I have played with the Arduino and I can send data back through the serial port form the Arduino to a serial port monitor on the system (computer). That is what ...