1. How to check what source files are included in CCS5.2? And where are they? The C language source files in CCS5.2 project are composed of two parts. One is the .c file in the project path, and the o...
Due to programming needs, the Double type is used to store data. However, when debugging, it is found in the Memory observation window that the Double type will automatically truncate the last few bit...
The process of changing an EXE or DLL program file after it has been loaded to reflect the actual load address is called "fixing up". Can anyone explain to me what this fix up means? There is also thi...
[size=11px]I am learning embedded development and I really want to know how to become a good driver development engineer? What kind of driver can be considered a good driver? Why do many people think ...
[size=4][color=#111111][font=Helvetica, Arial, sans-serif]Compared to other books, the pictures in this book are very impressive! [/font][/color] [color=#111111][font=Helvetica, Arial, sans-serif] I h...
How to save money with LCD meter←Energy Saving Wizard C card prepaid meter controller※Meter reversal QQ: 272208552 Tel: 13115998303 How to make the card meter go backwards, [If the website cannot be o...
In our common sense, the word technology often has two definitions. The first is the technology sealed in the laboratory. They are like flowers on the mountain top. Only a few people on the mountai...[Details]
Because the STM32 HAL library only has millisecond-level delay for HAl_Delay(), in order to achieve accurate microsecond-level delay, Systick has to be modified. However, since it is used internally ...[Details]
In the development of artificial intelligence, talent reserve is undoubtedly an important part. Artificial intelligence should be a bottom-level technology that can be deeply embedded in any indust...[Details]
From last year to now, competition in the photovoltaic inverter industry has become increasingly fierce. In addition to the introduction of new products, various marketing and promotion methods hav...[Details]
The clock system of STM32 can be directly summarized in a diagram (from the STM32F10X reference manual). The following is an analysis of this diagram 1. STM32 input clock source 1.1 Function of cl...[Details]
When STM32 uses JTMS (PA13) and JTCK (PA14) as normal I/O ports, add the following code before initialization (the order cannot be reversed): RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE); G...[Details]
The first one is a DMA mode of multiple channel acquisition void ADC_DMA_Config(void) { ADC_InitTypeDef ADC_InitStructure; RCC_HSICmd(ENABLE); while (RCC_GetFlagStatus(RCC_FLAG_HSIRDY) == RESET); ...[Details]
****************************************************************** 1. The operand is in register, R0--R7 2. Operands are in internal RAM 3. Operands are in external RAM But they are all similar. For ...[Details]
1.GCC+PN(WinAVR-20071221) Introduction: WinAVR-20071221 comes with Programmer's Notepad, which is an easy-to-use and powerful code editor with basic functions such as project management, syntax colo...[Details]
International Solar Photovoltaic Network News: On November 21, Australia's SMA Solar Technology Co., Ltd. signed a contract with the local government to provide photovoltaic inverters with an insta...[Details]
#include MSP430x12x2.h #define TEM_ADC_CHL 0x0a void InitSys(void); void Read_ADC(unsigned int INCH_channel); void ADC_TO_TEM(void); unsigned int ADC_sample_val; unsigned int long temp1,temp2;...[Details]
MSP430 uses ADC10 to measure the voltage of the temperature diode inside the chip #include "msp430x22x4.h" //This program uses ADC10 to measure the voltage of the temperature diode inside the chip ...[Details]