Multi-line comments cleanup (#19535)

This commit is contained in:
qwewer0
2020-09-28 21:53:50 +02:00
committed by Scott Lahteine
parent 3453d2d17a
commit 04a712dacc
131 changed files with 11 additions and 176 deletions

View File

@ -42,7 +42,6 @@ constexpr uint32_t flash_eeprom_version = 1;
* 0 16 DATA STORAGE AREA
* 16 1 VERSIONING DATA
* 17 inf MEDIA STORAGE AREA
*
*/
#define DATA_STORAGE_SIZE_64K

View File

@ -32,7 +32,6 @@
* Selecting an LCD Display
* Version 2.1
* Issue Date: 2017-11-14
*
*/
#define COMPUTE_REGS_FROM_DATASHEET \
constexpr uint16_t Hoffset = thfp + thb - 1; \

View File

@ -109,7 +109,6 @@ namespace FTDI {
* - Handles auto-repetition by sending onTouchHeld to the active screen periodically.
* - Plays touch feedback "click" sounds when appropriate.
* - Performs debouncing to supress spurious touch events.
*
*/
void EventLoop::process_events() {
// If the LCD is processing commands, don't check

View File

@ -49,7 +49,6 @@
* ...
* }
* }
*
*/
class PolyReader {

View File

@ -375,7 +375,6 @@ namespace ExtUI {
* constexpr float increment = 10;
*
* UI_INCREMENT(TargetTemp_celsius, E0)
*
*/
#define UI_INCREMENT_BY(method, inc, ...) ExtUI::set ## method(ExtUI::get ## method (__VA_ARGS__) + inc, ##__VA_ARGS__)
#define UI_DECREMENT_BY(method, inc, ...) ExtUI::set ## method(ExtUI::get ## method (__VA_ARGS__) - inc, ##__VA_ARGS__)