Posts

The Unknown Fear

As a girl I always wanted to be the best in my life best daughter best grand daughter best niece best student best employee best wife best daughter in law and now the best mother. Stopped to think how to be better for myself what makes me feel special running in a race and stopped to take a pause stopped planning for future. Everyone aound me are running beyond money and even my thoughts stopped being the best version of me to make better money save for future generation yes need to work hard do something extraordinary but how feeling i may loose in this life I may may not have one more chance again I am tired I am stuck in between the world thinking how this life should be utilized and what should each my child should tell her to run beyond money or tell her in your mind only money should be god but if someother asks you should give lecture money is also important and we need to do good. Yes I know even money is great we all are running beyond it but whatever I do at last I am ending ...

The Power of Not Knowing Limits

Image
  Unaware of Impossibility There is a saying that nothing is impossible , but is that really true? Here is a real-life story that makes this statement believable. Long ago at Columbia University, it was a normal day in class. A professor was giving a lecture, and one of the students, feeling tired, fell asleep for a while. After the professor left, the student woke up and noticed two problems written on the board. He assumed they were homework assignments and went home. Once he got home, he started working on the problems. He spent two to three hours trying to solve them, but nothing worked. Then he went to the library and read many books, hoping to find a solution, but he still couldn’t figure out how to solve the problems. After a couple of hours, while reading a book, he came across a reference problem that gave him an idea of how to approach the solution. Somehow, he managed to solve one of the problems and returned home. He felt a little worried because he was able to solve o...

The Hidden You

Image
  Unveil the Real you              This is not the story of a king with his crown, but of a boy with the quiet divinity within. There was a boy named Bhuvan , studying in 10th grade at Mathura, the sacred birthplace of Lord Krishna. He was the topper of his class, a bright student admired by everyone. Bhuvan’s father worked as a schoolteacher, while his mother lovingly managed the home. Being their only son, Bhuvan was the center of their world, and his parents sacrificed many of their own joys for his future.Their greatest dream was to see him become a doctor—and Bhuvan, with equal determination, embraced the same goal. They belonged to a deeply devotional family, whose traditional deity was Lord Krishna . Every day, Bhuvan would visit the temple, bow before the Lord, and study the Bhagavad Gita with sincerity. His only prayer was pure and simple: to score well in his 10th exams and take his first step toward becoming a doctor.    ...

What's Important in Life

Image
  Life is Unpredictable                      "Everyone will go through this question at least once in their lifetime. We all chase after money. Some chase fame, some people chase love, some pursue friendships, and others seek enjoyment. Therefore, there is no fixed definition of what is important in life. Poor and middle-class people strive for money, rich people strive for mental peace, unhealthy people strive for good health, and lonely people strive for friends and love. It completely depends on what we have lost in life. Because, as humans, we don't want to lose anything in this lifetime, we need money, a healthy mind and body, and our beloved family." But sometimes we reach a point where we lose everything. We get sick, we don’t get a good job to earn money, or our salary is not sufficient to lead a beautiful life. Our family may not support us, we may have no one to share our feelings with, or we are too busy with work to...

STM32 Microcontroller- GPIO Driver Development(Part-2)

Image
  GPIO Driver Development                 In the previous blog, we discussed how to develop the drive file for controller specific. Now, let us start developing GPIO driver file. This driver file will be used by the user application, it may want to initialize or use a different GPIO ports, or the user application may change the PIN number, it can change the GPIO modes, speed, output, type etc. So, that's why driver file should give a configuration structure to the user application, So the user application will initialize or fill that structure and then it will pass the structure to the driver APIs, and the driver APIs will decode the structure, and it will take appropriate action like initializing the peripheral registers. So, now there is a need to create configuration structure. GPIO Handle and Configuration structures  Configurable items for User Application: GPIO Port Number GPIO Pin Number GPIO Mode GPIO Speed GPIO Output type GPIO...

STM32 Microcontroller- GPIO Driver Development (Part-1)

Image
  GPIO Driver Development There are two files which we need to consider before developing any peripheral. 1.Driver file 2.Application file Driver File This is a header file which contains Microcontroller specific details such as: *The base addresses of various memories present in the microcontroller such as (Flash, SRAM1, SRAM2, ROM, etc). *The base addresses of various bus domains such as (AHBx domain, APBx domain). *The base addresses of various peripherals present in different bus domains of the microcontroller. *Clock Management macros(i.e, clock enable and clock disable micros) *Interrupts definition. *Peripheral Register definition structures. *Peripheral Register bit definition Define Base Addresses of various memories in the header file #define FLASH_BASEADDR         0x0800 0000U #define SRAM1_BASEADDR        0x2000 0000U #define SRAM2_BASEADDR        0x2000 1C00U #define ROM_BASEADDR      ...

STM32 Microcontroller- GPIO structure

Image
GPIO Pin and GPIO Port              GPIO pin stands for General Purpose Input Output. GPIO's typically used for reading digital signals, generating triggers for external components, issuing interrupts, waking up the processor and many. A GPIO port is a collection of some fixed numbers of I/O pins, STM32 based microcontroller support GPIO port of 16 pins PA.0 to PA.16.  Each GPIO Port is governed by many registers, These registers may vary depending upon the vendor who designs the microcontroller. Generally, in the microcontroller a GPIO port is govern by these registers. * Port Direction (Mode) Register - By using these registers, we can set the direction or mode as an input, output, analog etc. * Port Input Data Register - It is used to read from a GPIO port. * Port Output Data Register - It is used to write to a GPIO port.  Enabling and Disabling GPIO Ports To enable or disable any particular peripheral, we need to enable/disable its intern...