47 Comments

  1. This is the exact type of video i was looking for! Straight to the point for those who are already familiar with programming somewhat but want to learn C

  2. typedef struct __SPI_HandleTypeDef_t

    {

    SPI_TypeDef_t *Instance;

    SPI_InitTypeDef_t Init;

    uint8_t *pTxDataAddr;

    uint16_t TxDataSize;

    uint8_t busStateTx;

    void(*TxISRFunction)(struct __SPI_HandleTypeDef_t *SPI_Handle);

    uint8_t *pRxDataAddr;

    uint16_t RxDataSize;

    uint8_t busStateRx;

    void(*RxISRFunction)(struct __SPI_HandleTypeDef_t *SPI_Handle);

    }SPI_HandleTypeDef_t;

  3. I am familar with x86 assembly programming and this helps me a lot to understand what a pointer in C is and how functions works like subroutines with the calling convention. Additonal i learnt that we can’t use a variable in the main function that we initialize only i a function., but that we can initialize a variable in the main function that we can change in an other function, without to return the variable at the end of the function. At first i was confused.😂

  4. There are some differences between C compilers. I tried to use a C listing for the DOS Turbo C compiler from Borland with DOS DJGPP gcc and i had to add some initalizing of variables to the listing to use it for gcc. And i think i can’t use function that not exist in the older DOS gcc compiler, but in the modern gcc compiler for Linux.

  5. At first i had to learn what the meaning of type cast is. After solving a lot of errors i understand it now. I think the video is not for people that fresh start to learn C coding and you are talking i little to fast.

  6. After only watch a few minutes of this and previously having only used python: I get why people made so many more programming languages.

  7. Hey, drop a series of videos "Open Source Learning" where you'll make base program in C & give lots of issues/features to add(host on GitHub) which your viewers will add to practice. But honestly we need good graphic editor in Linux (Inkscape/Gimp are not there yet), maybe this can be it.

    Doing this you'll also have content when you can't think of any good ones — github pr reviews.

Leave a Reply

Your email address will not be published. Required fields are marked *

You might like

© 2026 Cantinho do Vídeo - WordPress Video Theme by WPEnjoy