I read TS_CAL1 and TS_CAL2 values from stm32f303vc and saw that TS_CAL2 is lower then TS_CAL1. Is it correct? I think this is mistake. I check the memory with Visual Studio in debug mode and saw the same values. Why is it so?Thank u in advance!
I'm using VS 2019 with visualgdb extension for stm32f303vc device. I have a class TlteCom with array of pointers to members of the c++ 17 class. Here it is.class TlteCom
{
public:
volatile uint16_t number=0;
volatile uint16_t paramNumber=0;
...
I think now that was correct. I checked my current temperaute adc values and saw that they are approximately equal to TS_CAL1. it seems to me that values are high with low temperature and low with high temperature. May be it will be useful for someon...
https://community.arm.com/developer/ip-products/processors/f/cortex-m-forum/5941/could-you-explain-bcc-command-to-mehere is interesting information about bcc command, may be it would be better to use bne command instead of bcc.i don’t use Hal library...
Hi, startup code defines addresses of stack pointer, entry point function and handlers function table. Also startup code initializes variables from data segment of memory by coping data from .text segment (flash) to sram, makes zero variables from bs...