Skip to content

Commit

Permalink
Updated: Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SquadQuiz committed Apr 24, 2024
1 parent bfdefe9 commit b29181b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Core/Src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ int main(void)
uint32_t bytesToWritten = 0; /* File write counts */
uint32_t bytesToRead = 0; /* File read counts */
uint8_t filePath[] = "STM32.TXT"; /* File path buffer */
uint8_t writeText[] = "STM32F746G FatFs + uSD"; /* File write buffer */
uint8_t writeText[] = "STM32F746G FatFs + uSD"; /* File write buffer */
uint8_t readText[100]; /* File read buffer */

/* USER CODE END 1 */
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,12 @@ PUTCHAR_PROTOTYPE

/* USER CODE BEGIN 1 */

FRESULT res = FR_NOT_READY; /* FatFs function common result code */
uint32_t bytesToWritten = 0; /* File write counts */
uint32_t bytesToRead = 0; /* File read counts */
uint8_t wtext[] = "STM32F746G FatFs + uSD "; /* File write buffer */
uint8_t rtext[100]; /* File read buffer */
FRESULT res = FR_NOT_READY; /* FatFs function common result code */
uint32_t bytesToWritten = 0; /* File write counts */
uint32_t bytesToRead = 0; /* File read counts */
uint8_t filePath[] = "STM32.TXT"; /* File path buffer */
uint8_t writeText[] = "STM32F746G FatFs + uSD"; /* File write buffer */
uint8_t readText[100]; /* File read buffer */

/* USER CODE END 1 */

Expand Down

0 comments on commit b29181b

Please sign in to comment.