Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
WhatsNew.txt | 2025-06-14 | 9.1 kB | |
RadASM_Update2.zip | 2025-06-14 | 288.6 kB | |
ReadMe.txt | 2025-06-14 | 2.2 kB | |
Totals: 3 Items | 299.9 kB | 15 |
NOTE: 2025-06-14 New upload Fixed bug where pressing "," did not work. NOTE: 2025-06-11 New upload Fixed bug where pressing enter on first line caused RadASM to terminate. RadASM version 3.0.1.3 How to update: -------------- The complete RadSTM32 package does NOT include this update. - Unzip RadSTM32_Update2.zip to an empty folder. - Move RadASM.exe to C:\RadSTM32 folder. If you are new to RadASM this might help you create applications faster. Adding peripherals to your project: ----------------------------------- Example: Adding support for ADC peripheral. - Right click in project browser on the group you want (Source?). - Select Add item / Import Files. - Browse to: C:\RadSTM32\Lib\STM32F1xx\src or C:\RadSTM32\Lib\STM32F4xx\src Depending on if your device is STM32F1xx or STM32F4xx. - Selec the stm32f10x_adc.c or the stm32f4xx_adc.c and hit [ Open ]. Bookmarks: ---------- Bookmarks are useful when you often need to return to a specific place in your code. F2 / Ctrl+F2: ------------- Place the caret on the word you want to jump to and hit F2. The word can be a function, struct, union, enum or #define. Hit Ctrl+F2 to return to where you left off. Ctrl+Alt+O: ----------- Place the caret on the file and hit Ctrl+Alt+O to open the file. Typically you use tis to open header file like: #include "stm32f10x_adc.h" Ctrl+Space: ----------- Show code complete list. Typically you type the first few letters of a function, struct, union, enum or #define and then hit Ctrl+Space to show a list of words that matches. Code complete list: ------------------- A list of alternatives will show on: - Many api function parameters. - Many api structure values. - Structure and union item names. To select the word you want you can: - Double click on the word. - Move to the word with Up / Down arrow and hit Tab or Enter. To hide the list hit Esc. Resize the list by dragging lower righ corner. Bracket matching and auto bracket: ---------------------------------- - Auto bracket on (), [] and {} - Simple code formatting on {} brackets. - Collapse / Expand code block on {} brackets. KetilO