Results 3 issues of Vitalij Mast

Hi, i have developed some kind of pretty print of custom attributes with the capibility to check for attribute if they are set. I wanted to share my improvement in...

enhancement-S

Fixes #48 Added true color support. Based on the #103 pull request implementation. As in this implantation the `struct Attribute` changed to `class Attribute`. Also there are now `TrueColorAttribute` and...

There is a buffer overflow in the `SD_RxDataBlock` function ([Src/fatfs_sd.c#L155](../blob/ec2cc09354676731ab8b5a30de211bcff51f5de9/STM32F4_HAL_SPI_SDCARD/Src/fatfs_sd.c#L155)). This: ```c /* receive data */ do { SPI_RxBytePtr(buff++); } while(len--); ``` Should be: ```c /* receive data */ do...