Browse Source

Comment spacing

Scott Lahteine 4 years ago
parent
commit
5e2582a31b

+ 1
- 1
Marlin/src/HAL/HAL_STM32_F4_F7/eeprom_emul.cpp View File

68
 static uint16_t EE_PageTransfer(uint16_t VirtAddress, uint16_t Data);
68
 static uint16_t EE_PageTransfer(uint16_t VirtAddress, uint16_t Data);
69
 static uint16_t EE_VerifyPageFullyErased(uint32_t Address);
69
 static uint16_t EE_VerifyPageFullyErased(uint32_t Address);
70
 
70
 
71
-/**
71
+ /**
72
   * @brief  Restore the pages to a known good state in case of page's status
72
   * @brief  Restore the pages to a known good state in case of page's status
73
   *   corruption after a power loss.
73
   *   corruption after a power loss.
74
   * @param  None.
74
   * @param  None.

+ 10
- 10
buildroot/share/PlatformIO/variants/BIGTREE_GENERIC_STM32F407_5X/stm32f4xx_hal_conf.h View File

28
 /* Exported constants --------------------------------------------------------*/
28
 /* Exported constants --------------------------------------------------------*/
29
 
29
 
30
 /* ########################## Module Selection ############################## */
30
 /* ########################## Module Selection ############################## */
31
-/**
31
+ /**
32
   * @brief This is the list of modules to be used in the HAL driver
32
   * @brief This is the list of modules to be used in the HAL driver
33
   */
33
   */
34
 #define HAL_MODULE_ENABLED
34
 #define HAL_MODULE_ENABLED
82
 /* #define HAL_MMC_MODULE_ENABLED   */
82
 /* #define HAL_MMC_MODULE_ENABLED   */
83
 
83
 
84
 /* ########################## HSE/HSI Values adaptation ##################### */
84
 /* ########################## HSE/HSI Values adaptation ##################### */
85
-/**
85
+ /**
86
   * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
86
   * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
87
   *        This value is used by the RCC HAL module to compute the system frequency
87
   *        This value is used by the RCC HAL module to compute the system frequency
88
   *        (when HSE is used as system clock source, directly or through the PLL).
88
   *        (when HSE is used as system clock source, directly or through the PLL).
95
 #define HSE_STARTUP_TIMEOUT    ((uint32_t)100U)   /*!< Time out for HSE start up, in ms */
95
 #define HSE_STARTUP_TIMEOUT    ((uint32_t)100U)   /*!< Time out for HSE start up, in ms */
96
 #endif /* HSE_STARTUP_TIMEOUT */
96
 #endif /* HSE_STARTUP_TIMEOUT */
97
 
97
 
98
-/**
98
+ /**
99
   * @brief Internal High Speed oscillator (HSI) value.
99
   * @brief Internal High Speed oscillator (HSI) value.
100
   *        This value is used by the RCC HAL module to compute the system frequency
100
   *        This value is used by the RCC HAL module to compute the system frequency
101
   *        (when HSI is used as system clock source, directly or through the PLL).
101
   *        (when HSI is used as system clock source, directly or through the PLL).
104
 #define HSI_VALUE    ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/
104
 #define HSI_VALUE    ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/
105
 #endif /* HSI_VALUE */
105
 #endif /* HSI_VALUE */
106
 
106
 
107
-/**
107
+ /**
108
   * @brief Internal Low Speed oscillator (LSI) value.
108
   * @brief Internal Low Speed oscillator (LSI) value.
109
   */
109
   */
110
 #if !defined  (LSI_VALUE)
110
 #if !defined  (LSI_VALUE)
112
 #endif /* LSI_VALUE */                      /*!< Value of the Internal Low Speed oscillator in Hz
112
 #endif /* LSI_VALUE */                      /*!< Value of the Internal Low Speed oscillator in Hz
113
 The real value may vary depending on the variations
113
 The real value may vary depending on the variations
114
 in voltage and temperature.*/
114
 in voltage and temperature.*/
115
-/**
115
+ /**
116
   * @brief External Low Speed oscillator (LSE) value.
116
   * @brief External Low Speed oscillator (LSE) value.
117
   */
117
   */
118
 #if !defined  (LSE_VALUE)
118
 #if !defined  (LSE_VALUE)
123
 #define LSE_STARTUP_TIMEOUT    ((uint32_t)5000U)   /*!< Time out for LSE start up, in ms */
123
 #define LSE_STARTUP_TIMEOUT    ((uint32_t)5000U)   /*!< Time out for LSE start up, in ms */
124
 #endif /* LSE_STARTUP_TIMEOUT */
124
 #endif /* LSE_STARTUP_TIMEOUT */
125
 
125
 
126
-/**
126
+ /**
127
   * @brief External clock source for I2S peripheral
127
   * @brief External clock source for I2S peripheral
128
   *        This value is used by the I2S HAL module to compute the I2S clock source
128
   *        This value is used by the I2S HAL module to compute the I2S clock source
129
   *        frequency, this source is inserted directly through I2S_CKIN pad.
129
   *        frequency, this source is inserted directly through I2S_CKIN pad.
136
    ===  you can define the HSE value in your toolchain compiler preprocessor. */
136
    ===  you can define the HSE value in your toolchain compiler preprocessor. */
137
 
137
 
138
 /* ########################### System Configuration ######################### */
138
 /* ########################### System Configuration ######################### */
139
-/**
139
+ /**
140
   * @brief This is the HAL system configuration section
140
   * @brief This is the HAL system configuration section
141
   */
141
   */
142
 #define  VDD_VALUE          ((uint32_t)3300U) /*!< Value of VDD in mv */
142
 #define  VDD_VALUE          ((uint32_t)3300U) /*!< Value of VDD in mv */
186
 #define  USE_HAL_WWDG_REGISTER_CALLBACKS        0U /* WWDG register callback disabled      */
186
 #define  USE_HAL_WWDG_REGISTER_CALLBACKS        0U /* WWDG register callback disabled      */
187
 
187
 
188
 /* ########################## Assert Selection ############################## */
188
 /* ########################## Assert Selection ############################## */
189
-/**
189
+ /**
190
   * @brief Uncomment the line below to expanse the "assert_param" macro in the
190
   * @brief Uncomment the line below to expanse the "assert_param" macro in the
191
   *        HAL drivers code
191
   *        HAL drivers code
192
   */
192
   */
258
 #define USE_SPI_CRC                     0U
258
 #define USE_SPI_CRC                     0U
259
 
259
 
260
 /* Includes ------------------------------------------------------------------*/
260
 /* Includes ------------------------------------------------------------------*/
261
-/**
261
+ /**
262
   * @brief Include module's header file
262
   * @brief Include module's header file
263
   */
263
   */
264
 
264
 
456
 
456
 
457
 /* Exported macro ------------------------------------------------------------*/
457
 /* Exported macro ------------------------------------------------------------*/
458
 #ifdef  USE_FULL_ASSERT
458
 #ifdef  USE_FULL_ASSERT
459
-/**
459
+ /**
460
   * @brief  The assert_param macro is used for function's parameters check.
460
   * @brief  The assert_param macro is used for function's parameters check.
461
   * @param  expr: If expr is false, it calls assert_failed function
461
   * @param  expr: If expr is false, it calls assert_failed function
462
   *         which reports the name of the source file and the source
462
   *         which reports the name of the source file and the source

+ 1
- 1
buildroot/share/PlatformIO/variants/BIGTREE_GENERIC_STM32F407_5X/variant.cpp View File

226
 extern "C" {
226
 extern "C" {
227
 #endif
227
 #endif
228
 
228
 
229
-/**
229
+ /**
230
   * @brief  System Clock Configuration
230
   * @brief  System Clock Configuration
231
   * @param  None
231
   * @param  None
232
   * @retval None
232
   * @retval None

+ 10
- 10
buildroot/share/PlatformIO/variants/MARLIN_F407VE/stm32f4xx_hal_conf.h View File

28
 /* Exported constants --------------------------------------------------------*/
28
 /* Exported constants --------------------------------------------------------*/
29
 
29
 
30
 /* ########################## Module Selection ############################## */
30
 /* ########################## Module Selection ############################## */
31
-/**
31
+ /**
32
   * @brief This is the list of modules to be used in the HAL driver
32
   * @brief This is the list of modules to be used in the HAL driver
33
   */
33
   */
34
 #define HAL_MODULE_ENABLED
34
 #define HAL_MODULE_ENABLED
82
 /* #define HAL_MMC_MODULE_ENABLED   */
82
 /* #define HAL_MMC_MODULE_ENABLED   */
83
 
83
 
84
 /* ########################## HSE/HSI Values adaptation ##################### */
84
 /* ########################## HSE/HSI Values adaptation ##################### */
85
-/**
85
+ /**
86
   * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
86
   * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
87
   *        This value is used by the RCC HAL module to compute the system frequency
87
   *        This value is used by the RCC HAL module to compute the system frequency
88
   *        (when HSE is used as system clock source, directly or through the PLL).
88
   *        (when HSE is used as system clock source, directly or through the PLL).
95
 #define HSE_STARTUP_TIMEOUT    ((uint32_t)100U)   /*!< Time out for HSE start up, in ms */
95
 #define HSE_STARTUP_TIMEOUT    ((uint32_t)100U)   /*!< Time out for HSE start up, in ms */
96
 #endif /* HSE_STARTUP_TIMEOUT */
96
 #endif /* HSE_STARTUP_TIMEOUT */
97
 
97
 
98
-/**
98
+ /**
99
   * @brief Internal High Speed oscillator (HSI) value.
99
   * @brief Internal High Speed oscillator (HSI) value.
100
   *        This value is used by the RCC HAL module to compute the system frequency
100
   *        This value is used by the RCC HAL module to compute the system frequency
101
   *        (when HSI is used as system clock source, directly or through the PLL).
101
   *        (when HSI is used as system clock source, directly or through the PLL).
104
 #define HSI_VALUE    ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/
104
 #define HSI_VALUE    ((uint32_t)16000000U) /*!< Value of the Internal oscillator in Hz*/
105
 #endif /* HSI_VALUE */
105
 #endif /* HSI_VALUE */
106
 
106
 
107
-/**
107
+ /**
108
   * @brief Internal Low Speed oscillator (LSI) value.
108
   * @brief Internal Low Speed oscillator (LSI) value.
109
   */
109
   */
110
 #if !defined  (LSI_VALUE)
110
 #if !defined  (LSI_VALUE)
112
 #endif /* LSI_VALUE */                      /*!< Value of the Internal Low Speed oscillator in Hz
112
 #endif /* LSI_VALUE */                      /*!< Value of the Internal Low Speed oscillator in Hz
113
 The real value may vary depending on the variations
113
 The real value may vary depending on the variations
114
 in voltage and temperature.*/
114
 in voltage and temperature.*/
115
-/**
115
+ /**
116
   * @brief External Low Speed oscillator (LSE) value.
116
   * @brief External Low Speed oscillator (LSE) value.
117
   */
117
   */
118
 #if !defined  (LSE_VALUE)
118
 #if !defined  (LSE_VALUE)
123
 #define LSE_STARTUP_TIMEOUT    ((uint32_t)5000U)   /*!< Time out for LSE start up, in ms */
123
 #define LSE_STARTUP_TIMEOUT    ((uint32_t)5000U)   /*!< Time out for LSE start up, in ms */
124
 #endif /* LSE_STARTUP_TIMEOUT */
124
 #endif /* LSE_STARTUP_TIMEOUT */
125
 
125
 
126
-/**
126
+ /**
127
   * @brief External clock source for I2S peripheral
127
   * @brief External clock source for I2S peripheral
128
   *        This value is used by the I2S HAL module to compute the I2S clock source
128
   *        This value is used by the I2S HAL module to compute the I2S clock source
129
   *        frequency, this source is inserted directly through I2S_CKIN pad.
129
   *        frequency, this source is inserted directly through I2S_CKIN pad.
136
    ===  you can define the HSE value in your toolchain compiler preprocessor. */
136
    ===  you can define the HSE value in your toolchain compiler preprocessor. */
137
 
137
 
138
 /* ########################### System Configuration ######################### */
138
 /* ########################### System Configuration ######################### */
139
-/**
139
+ /**
140
   * @brief This is the HAL system configuration section
140
   * @brief This is the HAL system configuration section
141
   */
141
   */
142
 #define  VDD_VALUE          ((uint32_t)3300U) /*!< Value of VDD in mv */
142
 #define  VDD_VALUE          ((uint32_t)3300U) /*!< Value of VDD in mv */
186
 #define  USE_HAL_WWDG_REGISTER_CALLBACKS        0U /* WWDG register callback disabled      */
186
 #define  USE_HAL_WWDG_REGISTER_CALLBACKS        0U /* WWDG register callback disabled      */
187
 
187
 
188
 /* ########################## Assert Selection ############################## */
188
 /* ########################## Assert Selection ############################## */
189
-/**
189
+ /**
190
   * @brief Uncomment the line below to expanse the "assert_param" macro in the
190
   * @brief Uncomment the line below to expanse the "assert_param" macro in the
191
   *        HAL drivers code
191
   *        HAL drivers code
192
   */
192
   */
258
 #define USE_SPI_CRC                     0U
258
 #define USE_SPI_CRC                     0U
259
 
259
 
260
 /* Includes ------------------------------------------------------------------*/
260
 /* Includes ------------------------------------------------------------------*/
261
-/**
261
+ /**
262
   * @brief Include module's header file
262
   * @brief Include module's header file
263
   */
263
   */
264
 
264
 
456
 
456
 
457
 /* Exported macro ------------------------------------------------------------*/
457
 /* Exported macro ------------------------------------------------------------*/
458
 #ifdef  USE_FULL_ASSERT
458
 #ifdef  USE_FULL_ASSERT
459
-/**
459
+ /**
460
   * @brief  The assert_param macro is used for function's parameters check.
460
   * @brief  The assert_param macro is used for function's parameters check.
461
   * @param  expr: If expr is false, it calls assert_failed function
461
   * @param  expr: If expr is false, it calls assert_failed function
462
   *         which reports the name of the source file and the source
462
   *         which reports the name of the source file and the source

+ 1
- 1
buildroot/share/PlatformIO/variants/MARLIN_F407VE/variant.cpp View File

104
 extern "C" {
104
 extern "C" {
105
 #endif
105
 #endif
106
 
106
 
107
-/**
107
+ /**
108
   * @brief  System Clock Configuration
108
   * @brief  System Clock Configuration
109
   * @param  None
109
   * @param  None
110
   * @retval None
110
   * @retval None

Loading…
Cancel
Save