C Programming for MSP430 Microcontrollers

Поділитися
Вставка
  • Опубліковано 29 жов 2024

КОМЕНТАРІ • 15

  • @ee4life623
    @ee4life623 Рік тому +2

    Glad I found this channel, now programming my MSP430 will be much simpler. Thank you sir, you have earned my subscription and hope your channel keeps growing. 🤞

    • @drselim
      @drselim  Рік тому +1

      Thank you for your comment. I’m glad you found the content useful 👍

  • @ARTG97
    @ARTG97 2 роки тому +1

    I finally understood what pointers are in the 6th semester of my IT studies haha. Thank you very much for that!

    • @drselim
      @drselim  2 роки тому

      You’re welcome :)

  • @muhammedenescelik9968
    @muhammedenescelik9968 Рік тому

    jezz, this Turkish guy is real hero

  • @merveozdas1193
    @merveozdas1193 Рік тому

    Merhaba, counter i artirduginizd, yaninda parantez icinde rastgele degerler gozukuyor, onlar adreslerdeki degerler mi?

  • @natrajansundhar2829
    @natrajansundhar2829 2 роки тому

    Thanks for the useful info sir. Same program can I try using in other controller right sir? In MSP430FR2355 FR2355

    • @natrajansundhar2829
      @natrajansundhar2829 2 роки тому

      @drselim

    • @drselim
      @drselim  2 роки тому

      Hi, you’re welcome. You surely can use CCS to program other TI development boards. You need to choose your board/mcu type while creating your project.

  • @yamenmadamani3839
    @yamenmadamani3839 3 роки тому

    thank you

    • @drselim
      @drselim  3 роки тому +1

      You’re welcome

  • @NKumar318
    @NKumar318 3 роки тому

    Very well explained sir, and most importantly you related it with c beautiful by explaining each aspect of c programming.
    I have one doubt when we are defining pointer we are already assiging it with memory adress of variable, but then why do you assigned it again using &a. Please explain where am I missing. Thanks

    • @drselim
      @drselim  3 роки тому +1

      Hi Nirbhay, thanks a lot for your kind comment.
      About the pointer section of the video, let me try to clarify it here, the example code was as follows:
      int a =3; //here we define the integer a and assign value 3 to it
      int *pointer_a; // here we define a pointer, however it has no connection with the variable 'a', the name 'pointer_a' doesn't mean anything. it could be 'nirbhay', 'selim' or 'youtube' or 'blablabla' ...
      pointer_a = &a // this is the line that we make the connection with the pointer and the memory address of a. After executing this line, 'pointer_a' stores the memory address of variable 'a'
      I hope this explanation supported you for clarifying the concept.

    • @NKumar318
      @NKumar318 3 роки тому +1

      @@drselim thanks sir it's clear now, I am going to watch all your videos today and will be posting my doubts. Thanks again sir

    • @drselim
      @drselim  3 роки тому +1

      @@NKumar318 You're welcome