PranabNandy / Linux-Kernel-Internals

GNU General Public License v3.0
0 stars 0 forks source link

Can you explain how you would write a driver for Linux? #3

Open PranabNandy opened 2 months ago

PranabNandy commented 2 months ago

๐Ÿค“Me: Okay..the first step is really getting to know the device we are dealing with. That means diving into the datasheets and making sure I understand the communication protocols, whether it is I2C, SPI, or UART. It is all about getting that solid understanding from the start.

๐ŸฅธInterviewer: That makes sense. What would you do next?

๐Ÿค“Me: After that, I would focus on the kernel module itself. In Linux, most drivers are kernel modules, so I would start with the basicsโ€”setting up the moduleโ€™s initialization and cleanup functions. It is kind of like doing a โ€œHello, World!โ€ but for the kernel.

๐ŸฅธInterviewer: And how would you handle the interaction with the device?

๐Ÿค”Me: That is where the device file ( /dev/xyz_device )system comes into play. Linux treats hardware devices like files, so I would create a device file to let user-space applications talk to the driver. Implementing functions like open, read, write, and ioctl would be key here. Also, I will ensure that the necessary entries in the DTS are correctly configured to match the driver.

๐ŸคจInterviewer: How do you deal with hardware interrupts in your driver (The interrupt generated by hardware device)?

๐Ÿ˜ตโ€๐Ÿ’ซMe: Handling interrupts efficiently is really important. I would make sure the driver registers the right interrupt handlers and manages them so we do not end up with latency issues or miss any important events.

Here is 2 things:

๐ŸงInterviewer: Sounds good. Anything tricky that you keep an eye on?

๐Ÿ˜ตโ€๐Ÿ’ซMe: Definitely. Memory management is a big one. Kernel memory is not like user space, so I would be really careful to allocate and free memory properly to avoid any leaks. Also, dealing with concurrency is super importantโ€”using spinlocks or semaphores to protect shared resources helps prevent race conditions.

๐Ÿ˜‰Interviewer: And what about debugging?

๐Ÿ˜…Me: Debugging in the kernel can be a bit tricky, but tools like dmesg, printk, and gdb are really helpful. I would make sure to test the driver under different conditions to catch any issues early on.

Interviewer: Hmmm ...anything else ?

๐Ÿ˜ŒMe: Adding a new device is not just about making it workโ€”it is about making sure it fits well with the Linux kernel and plays nicely with other drivers. Plus, I would make sure the code follows the open-source licensing rules since Linux uses the GPL license.

๐Ÿ˜‡Interviewer: Yea right.. Good explanation, lets move forward.

PranabNandy commented 2 months ago

Static vs. Dynamic Linking and Loading

Whether youโ€™re just starting out or youโ€™re a seasoned pro, itโ€™s always good to refresh our knowledge on these fundamental concepts. So, letโ€™s break it down!

Static Linking: ๐Ÿ”— Imagine youโ€™re baking a cake, and you mix all your ingredients (code libraries) directly into the batter (your program). Once baked, everything is a single, solid cake. This is what static linking does โ€“ it combines all the necessary libraries with your code into one executable file at compile time. The result? Fast execution because everythingโ€™s already in place, but it comes at the cost of a larger file size. ๐Ÿ“ฆ

Dynamic Linking: ๐Ÿ”— Now, picture making a cake but keeping the frosting (code libraries) separate until you serve it. This is dynamic linking โ€“ your program and its libraries remain separate entities. The linking happens at runtime, meaning the program will call the necessary libraries when needed. This keeps your executable smaller and allows updates to libraries without recompiling the entire program, but it can be a bit slower due to the additional steps during execution. โšก

Loading: ๐Ÿ”„ Both static and dynamic linking involve loading. For static, the loading happens once when the program is started. For dynamic, loading can happen multiple times during the programโ€™s execution, whenever a library is needed.

Adding Sugar to the Frosting: ๐Ÿฐ Think about dynamic linking like deciding to add more sugar to the frosting just before serving the cake. If you realize your frosting (code library) needs a tweak or an update, you can easily mix in the extra sugar (update the library) without having to rebake the entire cake (recompile the program). This flexibility is a huge advantage in environments where updates and changes are frequent.

When to Use What? ๐Ÿ› ๏ธ Use static linking when you need speed and donโ€™t mind the larger file size, like in embedded systems where you want everything tightly packed and optimized for performance.

๐Ÿ› ๏ธ Use dynamic linking when you want flexibility and ease of updates, perfect for applications where libraries might change or get updated frequently.

In the end, the choice between static and dynamic linking and loading depends on your specific needs and constraints. Understanding these concepts helps us make informed decisions in our software projects.

Happy coding ๐Ÿฅธ

PranabNandy commented 2 months ago

๐Ÿค– DMA and๐Ÿ‘จโ€๐Ÿณ Cooking at Home ๐ŸŒŸ

๐Ÿค”What is DMA?

Direct Memory Access (DMA) is a feature that allows certain hardware subsystems to access main system memory (RAM) independently of the central processing unit (CPU). In simpler terms, DMA can transfer data between memory and peripherals without burdening the CPU.

Imagine you are cooking a meal๐Ÿคค with your spouse. You are busy at the stove, managing multiple dishes, while your spouse๐Ÿ’ helps by fetching ingredients from the fridge and the pantry. If you had to stop cooking every time to get ingredients yourself, it would slow down the whole process๐Ÿข.

In this analogy, imgine you are the CPU, the kitchen is the memory, and your spouse is the DMA controller. Your spouse handles the task of bringing ingredients, allowing you to focus on cooking without interruptions. So you need not to pull out onions potatos and wash hands and go back and start cooking again. Similar is with DMA, cpu need not to worry about waiting for the data and doing data read writes and data flushing itself while executing something more important๐Ÿฅธ

So what does DMA offers ๐Ÿง :

  1. Efficiency and Speed: DMA significantly speeds up data transfers. By offloading the data transfer tasks to the DMA controller, the CPU is free to execute other instructions, leading to more efficient system performance.

  2. Reduced CPU Load: In embedded systems, the CPU often has to manage multiple tasks simultaneously. DMA reduces the CPU's workload by handling the bulk of data movement, allowing the CPU to focus on critical real-time tasks.

  3. Low Power Consumption: Embedded systems, especially those in battery-powered devices, benefit from DMA's ability to perform data transfers with minimal CPU intervention. This helps in conserving power and extending battery life.

  4. Improved Data Handling: DMA is particularly useful for handling large blocks of data, such as streaming audio or video, where timely and efficient data transfer is crucial. It ensures data integrity and smooth operation of multimedia applications.

In summary, DMA is like having a dedicated helper in the kitchen who brings you ingredients while you cook. It enhances efficiency, performance, and power management in embedded systems. Understanding and utilizing DMA can make a significant difference in the design and functionality of embedded applications.

PranabNandy commented 2 months ago

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Ok and have you ever worked on ARM Cortex-M0 processors before?

๐Ÿ˜Ž๐Œ๐ž: Yes, I'm familiar with M0 processor. I have worked on it under various projects that i have worked on.

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: I see, so have you heard about the NVIC in ARM Cortex-M0 processors?

๐Ÿ˜Ž๐Œ๐ž: Yes Its an interrupt controller

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Do you know what it stands for ?

๐Ÿฅฒ๐Œ๐ž: Well the last part "IC" stands for Interrupt controller๐Ÿ˜ฌ

๐Ÿซก๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: I see ๐Ÿ˜, so what its used for in M0 ?

๐Ÿค“You: NVIC is a crucial component in ARM Cortex-M0 processors. It serves as the traffic manager for interrupts, ensuring efficient handling of various events.

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Can you elaborate more on its role in M0 processor?

๐Ÿค”๐Œ๐ž: NVIC's nested and prioritized structure allows for the seamless handling of multiple interrupt sources. It ensures that critical tasks are addressed promptly, contributing to the overall efficiency of the system.

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: And how does the NVIC contribute to energy efficiency in embedded systems?

๐Ÿฅธ๐Œ๐ž: The NVIC helps in energy efficiency by allowing the processor to enter low-power states when not actively processing interrupts. This dynamic power management ensures that the system conserves energy without compromising responsiveness.

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Correct and how about real-time responsiveness? How does the NVIC handle high-priority interrupts?

๐Ÿค”๐Œ๐ž: Umm.. NVIC's nested structure enables immediate handling of high-priority interrupts, minimizing latency and ensuring that time-sensitive tasks are executed with precision. This makes it ideal for applications requiring real-time responsiveness, such as sensor networks and motor control systems.

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Can we say it has good scalability? or... umm how the NVIC adapts to different project sizes?

๐Ÿค”๐Œ๐ž: NVIC is has good scalability. Whether you're working on a small-scale project or a complex embedded system, the NVIC adapts seamlessly, allowing developers to allocate priorities based on the criticality of each interrupt source. This flexibility empowers developers to fine-tune system behavior to meet the unique demands of their applications.

๐Ÿ˜ˆ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Can you name some more Interrupt controllers ?

PranabNandy commented 2 months ago

๐Ÿง๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ: "Which paging technique is used in RTOS?"

๐Ÿฅธ๐— ๐—ฒ: "In RTOS, demand paging is commonly used."

๐Ÿง๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ: "Could you explain what demand paging is?"

๐Ÿ˜Ž๐— ๐—ฒ: "Certainly! Demand paging is a memory management technique where pages are loaded into memory only when they are required by the executing program. It helps optimize memory usage by bringing in only the necessary pages, reducing overhead and improving overall system performance."

๐Ÿง๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ: "Interesting! What is the primary motive of RTOS then?"

๐Ÿ˜Ž๐— ๐—ฒ: "The primary goal of RTOS is to ensure quick response times and deterministic behavior for real-time applications."

๐Ÿ˜ˆ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ: "Considering that, can demand paging be used in RTOS?"

๐Ÿฅฒ๐— ๐—ฒ: "You're absolutely correct. Given that the primary objective of RTOS is rapid response times, demand paging, with its dynamic loading of pages from disk to memory, might not be suitable."

๐Ÿ˜ˆ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ: So what do we use in RTOS?

๐— ๐—ฒ: ๐Ÿ˜ถ

PranabNandy commented 2 months ago

๐Ÿค“Preparing for a telephonic Interview ? Here are some trivial yet crucial questions you might encounter:

โ‰๏ธ Difference between a hard link and a soft link in Linux? โœ…๏ธ A hard link points directly to the file's inode, while a soft link points to the file's path.

โ‰๏ธWhat is a shell in Linux? โœ…๏ธ The shell is a command-line interpreter facilitating user-OS interaction and command execution.

โ‰๏ธHow to check the memory usage of a Linux system? โœ…๏ธUse the "free" command to display memory usage, including total, used, free memory, and swap usage.

โ‰๏ธHow to find the IP address of a Linux system? โœ…๏ธUtilize the "ifconfig" command to display network interface information, including IP addresses.

โ‰๏ธHow to find the list of running processes in Linux? โœ…๏ธEmploy the "ps" command with options like "-ef" or "-aux" to display running processes.

โ‰๏ธHow to kill a process in Linux? โœ…๏ธTerminate a process using the "kill" command, requiring the process ID obtained from "ps.

โ‰๏ธ"Purpose of the "chmod" command in Linux? โœ…๏ธ"chmod" changes file and directory permissions, granting or revoking read, write, and execute permissions.

โ‰๏ธHow to search for a file in Linux? โœ…๏ธUse the "find" command to search for files based on various criteria like name, size, or modification time.

โ‰๏ธWhat is the purpose of the "cron" daemon in Linux? โœ…๏ธThe "cron" daemon is a time-based job scheduler in Linux, allowing users to automate command execution at specified intervals.

โ‰๏ธHow do you schedule a cron job in Linux? โœ…๏ธTo schedule a cron job, use the "crontab" command. Running "crontab -e" opens the user's crontab file to specify the command or script and schedule.

โ‰๏ธDifference between SSH and SSL? โœ…๏ธSSH (Secure Shell) is for secure remote access and system management, while SSL (Secure Sockets Layer) establishes encrypted connections for secure web communication (HTTPS).

โ‰๏ธHow to check network connectivity in Linux? โœ…๏ธUse the "ping" command to check connectivity between your machine and a remote host by sending ICMP echo requests and displaying response time.

๐Ÿค“Do share your experience for telephonic interview questions and answers that you might have stumbled upon.

PranabNandy commented 2 months ago

๐Ÿค”Imagine your computer is like a house๐Ÿ , and the BIOS (Basic Input/Output System) is like the lock๐Ÿ”’on the front door.

Just as the lock controls access to your house, the BIOS controls access๐Ÿšซ to your computer's hardware when it starts up.

Now, think of Coreboot as a customizable, open-source security system for your house. Instead of relying on a standard lock, Coreboot allows you to design your own security measures ๐Ÿ”โœจ๏ธ tailored to your specific needs. You can choose the types of locks, alarms, and access controls you want to implement, giving you more control and transparency over your home's security๐Ÿ’ƒ๐Ÿ’ƒ.

So you have a traditional house with a standard lock on the front door (BIOS). However, you're concerned about security vulnerabilities and limitations with the standard lock. So, you decide to install Coreboot, which allows you to customize your home's security system.

๐Ÿ˜ฎโ€๐Ÿ’จWith BIOS (Standard Lock):

You have limited control over the lock's features and settings.If there's a security flaw in the lock, you have to wait for the manufacturer to release a fix. You can't easily modify or upgrade the lock to better suit your needs.

๐Ÿค“With Coreboot (Custom Security System):You have full control over the security features of your home.If there's a security issue, you can directly address it or rely on the active community to provide solutions. You can customize and upgrade your security system at any time, adding new features or improving existing ones.

So, Coreboot empowers๐Ÿ˜Ž you to take control of your computer's firmware, just like a customizable security system gives you more control over your home's security. It's all about flexibility, transparency, and putting the power back in your hands.

PranabNandy commented 2 months ago

๐Ÿคค Imagine you're a head chef (representing a process) in a bustling kitchen, tasked with creating a masterpiece dish. You have a limited number of ingredients (resources) at your disposal, and if you attempt to whip up the entire dish from start to finish solo, you'll end up spending a lot of time juggling tasks๐Ÿ˜ฐ.

But fear not! ๐ŸŒŸ You've hired a team of eager intern chefs๐Ÿง‘โ€๐Ÿณ๐Ÿง‘โ€๐Ÿณ๐Ÿง‘โ€๐Ÿณ (representing threads) who may not know the recipe from start to finish, but they excel at handling individual tasks like frying, seasoning, or marinating. Just like threads in an operating system, these interns can work simultaneously and independently, each focusing on a specific aspect of the dish.

Now, here's where the magic happens! ๐ŸŽฉโœจ Instead of hoarding all the ingredients to yourself, you share them with your intern chefs, allowing them to prepare their assigned tasks in parallel. While one intern is sautรฉing onions, another can be grilling the protein, and yet another can be prepping the garnishes.

By delegating tasks to your team of intern chefs (threads), you optimize efficiency and minimize downtime. Plus, if one task requires a bit more time or resources, it doesn't stall the entire cooking process. Just like in operating systems, where threads can be managed and executed concurrently, this culinary analogy illustrates the power of parallelism and resource sharing.

So, embrace the kitchen chaos and let your intern chefs (threads) work their culinary magic, all under the guidance of the head chef (process). Bon appรฉtit! ๐Ÿฝ๏ธ

PranabNandy commented 2 months ago

๐Ÿฅน๐——๐—ฎ๐˜๐—ฎ ๐˜€๐—ฒ๐—ป๐˜ ๐—ฎ๐—ป๐—ฑ ๐—ฒ๐˜…๐—ฝ๐—ฒ๐—ฐ๐˜๐—ฒ๐—ฑ ๐—ป๐—ผ๐˜ ๐—บ๐—ฎ๐˜๐—ฐ๐—ต๐—ถ๐—ป๐—ด ? Have you ever encountered memory alignment issues or wanted to reduce the memory footprint of your C/C++ structs? ๐Ÿง The ๐š๐ญ๐ญ๐ซ๐ข๐›๐ฎ๐ญ๐ž((๐ฉ๐š๐œ๐ค๐ž๐)) attribute might just be the tool you need! In C and C++, structures are typically padded with extra bytes to ensure proper alignment, which can lead to wasted memory space, especially in embedded systems or when working with network protocols. But fear not! The ๐š๐ญ๐ญ๐ซ๐ข๐›๐ฎ๐ญ๐ž((๐ฉ๐š๐œ๐ค๐ž๐)) attribute comes to the rescue by instructing the compiler to pack structure members without any padding. Here's a quick example: hashtag#๐ข๐ง๐œ๐ฅ๐ฎ๐๐ž <๐ฌ๐ญ๐๐ข๐จ.๐ก> ๐ฌ๐ญ๐ซ๐ฎ๐œ๐ญ ๐„๐ฑ๐š๐ฆ๐ฉ๐ฅ๐ž { ๐œ๐ก๐š๐ซ ๐š; ๐ข๐ง๐ญ ๐›; ๐œ๐ก๐š๐ซ ๐œ; } ๐š๐ญ๐ญ๐ซ๐ข๐›๐ฎ๐ญ๐ž((๐ฉ๐š๐œ๐ค๐ž๐)); ๐ข๐ง๐ญ ๐ฆ๐š๐ข๐ง() { ๐ฉ๐ซ๐ข๐ง๐ญ๐Ÿ("๐’๐ข๐ณ๐ž ๐จ๐Ÿ ๐ฌ๐ญ๐ซ๐ฎ๐œ๐ญ ๐„๐ฑ๐š๐ฆ๐ฉ๐ฅ๐ž: %๐ณ๐ฎ ๐›๐ฒ๐ญ๐ž๐ฌ\๐ง", ๐ฌ๐ข๐ณ๐ž๐จ๐Ÿ(๐ฌ๐ญ๐ซ๐ฎ๐œ๐ญ ๐„๐ฑ๐š๐ฆ๐ฉ๐ฅ๐ž)); ๐ซ๐ž๐ญ๐ฎ๐ซ๐ง ๐ŸŽ; } ๐Ÿค“By applying attribute((packed)) to the Example struct, we eliminate any padding between its members, resulting in a more compact memory layout. However, it's crucial to note that using this attribute may affect performance due to potential alignment issues, so it's best suited for specific use cases where memory optimization is paramount. ๐Ÿ˜ŽNext time you're optimizing memory usage or working on a project with strict memory constraints, consider harnessing the power of attribute((packed)) to streamline your data structures and enhance efficiency!

PranabNandy commented 2 months ago

Ever heard about IP addresses and MAC addresses in networking systems ? what are these two terms ?

๐Ÿ˜†We can say mac_addr is pet name or ghar ka naam e.g. munna and ip_addr is your social media tag/username e.g princess_angel

So the social media would know you by your social media name or IP_ADDR. And in your home everybody knows you via your pet name or mac_addr.

So in terms of networking let's say you have a home network with multiple devices connected to a Wi-Fi router.

Say your smartphone has an IP address of 192.xxx.x.xxx assigned to it by the router.

And Your laptop has an IP address of 192.xxx.x.xxx assigned to it by the router.

And these IP addresses are used for devices to communicate with each other over the network and to access the internet.

And when we talk about MAC Address

Your smartphone has a MAC address like 00:1A:xx:xx:xx:xx. Your laptop has a MAC address like 11:22:xx:xx:xx:xx.

MAC addresses are used by the router to direct data specifically to each device within the local network(ghar).When data packets are sent between devices on the local network, the router uses the MAC address to determine which device to send the data to.

So, while IP addresses help devices communicate across networks and the internet, MAC addresses are used within a local network to ensure that data is sent to the correct device.

Both IP addresses and MAC addresses work together to facilitate communication and data transmission in computer networks.

PranabNandy commented 2 months ago

As C developers, we heavily rely on this function, and it's often a hot topic in interviews.

One of the most commonly asked questions is: "Can you describe and demonstrate the use of malloc()?"๐Ÿง

So, let's dive into a few important points about ๐Ÿ’๐Ÿปโ€โ™‚๏ธmalloc():

  1. ๐——๐˜†๐—ป๐—ฎ๐—บ๐—ถ๐—ฐ ๐— ๐—ฒ๐—บ๐—ผ๐—ฟ๐˜† ๐—”๐—น๐—น๐—ผ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป: malloc() in C allows dynamic allocation of memory during runtime, enabling programs to adapt to varying memory needs.

  2. ๐—›๐—ฒ๐—ฎ๐—ฝ ๐— ๐—ฒ๐—บ๐—ผ๐—ฟ๐˜†: Memory allocated by malloc() comes from the heap, a region of the process's virtual memory space, providing flexibility in memory management.

  3. ๐—ฆ๐˜†๐—ป๐˜๐—ฎ๐˜…: The syntax of malloc() is void* malloc(size_t size), where size specifies the number of bytes to allocate.

  4. ๐—ฅ๐—ฒ๐˜๐˜‚๐—ฟ๐—ป ๐—ฉ๐—ฎ๐—น๐˜‚๐—ฒ: It returns a pointer to the beginning of the allocated memory block or NULL if the allocation fails.

  5. ๐—จ๐˜€๐—ฎ๐—ด๐—ฒ: malloc() is commonly used for allocating memory for arrays, structs, and other data structures whose size may vary at runtime.

  6. ๐— ๐—ฒ๐—บ๐—ผ๐—ฟ๐˜† ๐—Ÿ๐—ฒ๐—ฎ๐—ธ ๐—ฃ๐—ฟ๐—ฒ๐˜ƒ๐—ฒ๐—ป๐˜๐—ถ๐—ผ๐—ป: Proper use of malloc() helps prevent memory leaks by allocating memory dynamically and freeing it when no longer needed using free().

  7. ๐—˜๐—ฟ๐—ฟ๐—ผ๐—ฟ ๐—›๐—ฎ๐—ป๐—ฑ๐—น๐—ถ๐—ป๐—ด: It's essential to check if malloc() returns NULL to handle failed memory allocation gracefully.

  8. ๐—ง๐˜†๐—ฝ๐—ฒ๐—ฐ๐—ฎ๐˜€๐˜๐—ถ๐—ป๐—ด: Although not required in C, it's a good practice to typecast the returned pointer from malloc() to the appropriate type.

  9. ๐—ฆ๐—ถ๐˜‡๐—ฒ ๐—–๐—ฎ๐—น๐—ฐ๐˜‚๐—น๐—ฎ๐˜๐—ถ๐—ผ๐—ป: The size argument in malloc() should be calculated based on the size of the data type being allocated and the number of elements required.

  10. ๐— ๐—ฒ๐—บ๐—ผ๐—ฟ๐˜† ๐—ข๐—ฝ๐˜๐—ถ๐—บ๐—ถ๐˜‡๐—ฎ๐˜๐—ถ๐—ผ๐—ป: By dynamically allocating memory only when needed, malloc() optimizes memory usage and improves program efficiency.

Understanding and mastering malloc() is crucial for efficient memory management in C programming, enabling developers to build robust and scalable applications.

PranabNandy commented 2 months ago

1) What is a Makefile, and what role does it play in software development?๐Ÿง

-> Makefiles automate the build process in software development by specifying rules for compiling, linking, and executing code files.

๐Ÿค“So say if we have very huge number of files and directories that need to be compiled and they all have dependencies on certain header files and other files๐Ÿฅธ, so compiling them one by one will be next to impossible that's when makefile comes into action.

2) How are rules defined in a Makefile, and what are their components?๐Ÿคจ

-> Rules consist of targets, dependencies, and commands. For example:

target: dependency1 dependency2 { your command }

3) Why is dependency management important in Makefiles, and how does it optimize the build process?

-> Dependency management minimizes unnecessary recompilation by tracking file relationships.

Example: target: dependency {command}

4) What are implicit rules in Makefiles, and when would you use them?๐Ÿง Provide an example.

->Implicit rules are pre-defined templates for common tasks, simplifying Makefile maintenance.

Example: %.o: %.c $(CC) -c $< -o $@

5) How can variables be utilized in Makefiles, and what advantages do they offer?๐Ÿฅธ

Variables enhance flexibility, consistency, and readability.

Example:

CC = gcc CFLAGS = -Wall -O2 SRC = main.c utils.c OBJ = $(SRC:.c=.o) TARGET = my_program

๐Ÿ˜ŽMastering these Makefile interview questions will not only showcase your expertise but also set you apart as a skilled software developer ready to tackle complex build processes with ease.

๐Ÿ’ชSo, are you prepared to tackle Makefile questions in your next interview?

PranabNandy commented 2 months ago

๐Ÿฅณ ๐—ฆ๐—ถ๐—บ๐—ฝ๐—น๐—ฒ ๐—ฆ๐˜†๐˜€๐˜๐—ฒ๐—บ ๐—ฑ๐—ฒ๐˜€๐—ถ๐—ด๐—ป ๐—ถ๐—ป ๐—˜๐—บ๐—ฏ๐—ฒ๐—ฑ๐—ฑ๐—ฒ๐—ฑ ๐—ฆ๐—ผ๐—ณ๐˜๐˜„๐—ฎ๐—ฟ๐—ฒ ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐Ÿค“๐Ÿ’ฐ

๐Ÿฅธ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฒ๐˜„๐—ฒ๐—ฟ (๐Ÿ…ธ): Shashank, Can you explain the use of interrupts? Why do we need interrupts? how do they work?

๐Ÿค“๐Ÿ…ผ๐Ÿ…ด: Sure! Interrupt mechanism allows processor to respond to ext. events without constantly polling status. When interrupt occurs, processor stops executing current code, saves context, and jumps to ISR to handle the event. After ISR is complete, processor resumes its previous operation.

๐Ÿฅธ๐Ÿ…ธ: Hmmm.. correct. Now, let's say you're working on an embedded system with button presses and sensor readings as interrupt sources. What exactly you need to do to prioritize and manage these interrupts?

๐Ÿค”๐Ÿ…ผ๐Ÿ…ด: Okay let me explain step wise what I need to do:

๐Ÿญ.๐—–๐—ผ๐—ป๐—ณ๐—ถ๐—ด๐˜‚๐—ฟ๐—ฒ ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐—ฟ๐˜‚๐—ฝ๐˜ ๐—ฆ๐—ผ๐˜‚๐—ฟ๐—ฐ๐—ฒ๐˜€: I can set up INT0 to trigger on a falling edge (for button presses) and INT1 to trigger on a rising edge (for sensor readings).

๐Ÿฎ.๐—˜๐—ป๐—ฎ๐—ฏ๐—น๐—ฒ ๐—œ๐—ป๐˜๐—ฒ๐—ฟ๐—ฟ๐˜‚๐—ฝ๐˜๐˜€: I would enable the respective interrupts using EIMSK (External Interrupt Mask Register).

๐Ÿฏ. ๐——๐—ฒ๐—ณ๐—ถ๐—ป๐—ฒ ๐—œ๐—ฆ๐—ฅ๐˜€: I'd write separate ISRs for each interrupt source. In the ISRs, I'd handle the specific tasks related to the interrupt source.

In the main loop, I continuously check the interrupt flags associated with each interrupt source. If an interrupt flag is set, I'd execute the corresponding ISR to handle the event and reset the flag afterwards.

๐Ÿฅธ๐Ÿ…ธ: Cool! Please write a sample code?

๐Ÿฅน๐Ÿ…ผ๐Ÿ…ด: Ok! Here's an ex. code in C:

// ๐ƒ๐ž๐Ÿ๐ข๐ง๐ž ๐Ÿ๐ฅ๐š๐ ๐ฌ ๐ญ๐จ ๐ญ๐ซ๐š๐œ๐ค ๐ข๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ ๐ฌ๐ญ๐š๐ญ๐ฎ๐ฌ ๐ฏ๐จ๐ฅ๐š๐ญ๐ข๐ฅ๐ž ๐ฎ๐ข๐ง๐ญ8_๐ญ ๐›๐ฎ๐ญ๐ญ๐จ๐ง๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 0; ๐ฏ๐จ๐ฅ๐š๐ญ๐ข๐ฅ๐ž ๐ฎ๐ข๐ง๐ญ8_๐ญ ๐ฌ๐ž๐ง๐ฌ๐จ๐ซ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 0;

๐ฏ๐จ๐ข๐ ๐ž๐ง๐š๐›๐ฅ๐ž๐†๐ฅ๐จ๐›๐š๐ฅ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐ฌ() { ๐ฌ๐ž๐ข(); }

// ๐ˆ๐’๐‘ ๐Ÿ๐จ๐ซ ๐›๐ฎ๐ญ๐ญ๐จ๐ง ๐ฉ๐ซ๐ž๐ฌ๐ฌ๐ž๐ฌ ๐ˆ๐’๐‘(๐ˆ๐๐“0_๐ฏ๐ž๐œ๐ญ) { ๐›๐ฎ๐ญ๐ญ๐จ๐ง๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 1; } // ISR for sensor ๐ˆ๐’๐‘(๐ˆ๐๐“1_๐ฏ๐ž๐œ๐ญ) { ๐ฌ๐ž๐ง๐ฌ๐จ๐ซ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 1; } ๐ข๐ง๐ญ ๐ฆ๐š๐ข๐ง(๐ฏ๐จ๐ข๐) { // ๐ˆ๐ง๐ข๐ญ๐ข๐š๐ฅ๐ข๐ณ๐ž ๐†๐๐ˆ๐Ž ๐š๐ง๐ ๐œ๐จ๐ง๐Ÿ๐ข๐ ๐ฎ๐ซ๐ž ๐ข๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐ฌ // (๐‚๐จ๐ง๐Ÿ๐ข๐ ๐ฎ๐ซ๐ž ๐ˆ๐๐“0 ๐š๐ง๐ ๐ˆ๐๐“1 ๐š๐ฌ ๐ฆ๐ž๐ง๐ญ๐ข๐จ๐ง๐ž๐ ๐ž๐š๐ซ๐ฅ๐ข๐ž๐ซ)

๐„๐ˆ๐‚๐‘๐€ |= (1 << ๐ˆ๐’๐‚01); // Set falling edge trigger for INT0

๐„๐ˆ๐‚๐‘๐€ |= (1 << ๐ˆ๐’๐‚11) | (1 << ๐ˆ๐’๐‚10); // Set Rising edge trigger for INT1

๐„๐ˆ๐Œ๐’๐Š |= (1 << ๐ˆ๐๐“0) | (1 << ๐ˆ๐๐“1); // Enabling INT1 & INT2

๐ž๐ง๐š๐›๐ฅ๐ž๐†๐ฅ๐จ๐›๐š๐ฅ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐ฌ();

๐ฐ๐ก๐ข๐ฅ๐ž (1) // GIC handles this { ๐ข๐Ÿ (๐›๐ฎ๐ญ๐ญ๐จ๐ง๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐ ) { //สœแด€ษดแด…สŸแด‡ button press interrupt & clear it ๐›๐ฎ๐ญ๐ญ๐จ๐ง๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 0; } ๐ข๐Ÿ (๐ฌ๐ž๐ง๐ฌ๐จ๐ซ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐ ) { //สœแด€ษดแด…สŸแด‡ ๊œฑแด‡ษด๊œฑแดส€ ส€แด‡แด€แด…ษชษดษข ษชษดแด›แด‡ส€ส€. & clear it ๐ฌ๐ž๐ง๐ฌ๐จ๐ซ๐ˆ๐ง๐ญ๐ž๐ซ๐ซ๐ฎ๐ฉ๐ญ๐…๐ฅ๐š๐  = 0; } } ๐ซ๐ž๐ญ๐ฎ๐ซ๐ง 0; }

๐Ÿ…ธ: Can you explain why using "volatile" ?

PranabNandy commented 2 months ago

๐Ÿฅธ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: What Linux flavour you are most used to ?

๐Ÿค“๐Œ๐ž: Ubuntu ๐Ÿง mostly

๐Ÿฅธ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: So you use Ubuntu ? Do you know about its boot flow ? Can you explain ?

๐Ÿค“๐Œ๐ž: Sure (grabs Marker and hops ๐Ÿš€ infront of white board)

๐Ÿ. ๐๐ˆ๐Ž๐’/๐”๐„๐…๐ˆ: It all starts with the Basic Input/Output System (BIOS) or Unified Extensible Firmware Interface (UEFI) initializing hardware and loading the bootloader.

๐Ÿ. ๐๐จ๐จ๐ญ๐ฅ๐จ๐š๐๐ž๐ซ (๐†๐‘๐”๐): GRand Unified Bootloader (GRUB) is a common choice. It allows you to choose your Linux kernel and initial RAM disk (initrd) if needed.

๐Ÿ‘. ๐Š๐ž๐ซ๐ง๐ž๐ฅ ๐ˆ๐ง๐ข๐ญ๐ข๐š๐ฅ๐ข๐ณ๐š๐ญ๐ข๐จ๐ง: ...

๐Ÿง๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ž๐ซ: Wait, can you elaborate more about Bootloader ? may be about its stages?

๐Ÿ˜…๐Œ๐ž: ok sure..

๐Ÿ.๐Ÿ ๐๐จ๐จ๐ญ๐ฅ๐จ๐š๐๐ž๐ซ ๐’๐ญ๐š๐ ๐ž๐ฌ:

Stage 1 (MBR/PBR): The first stage of GRUB is usually found in the Master Boot Record (MBR) or the Partition Boot Record (PBR) of the boot device. It's responsible for locating the next stage.

Stage 1.5 (Optional): In complex storage setups, a Stage 1.5 may come into play, understanding file systems and facilitating the loading of Stage 2

Stage 2 (core.img): The critical second stage of GRUB, stored in /boot/grub/, takes over. It presents the GRUB menu, loads the Linux kernel, and initializes the boot process.

๐Ÿ‘. ๐Š๐ž๐ซ๐ง๐ž๐ฅ ๐ˆ๐ง๐ข๐ญ๐ข๐š๐ฅ๐ข๐ณ๐š๐ญ๐ข๐จ๐ง: Post-GRUB, the Linux kernel (vmlinuz) and possibly the initial RAM disk (initrd.img) are loaded into memory. The kernel's start_kernel() function is executed, beginning the kernel's internal initialization process.

๐Ÿ’. ๐ˆ๐ง๐ข๐ญ-๐ซ๐š๐ฆ-๐Ÿ๐ฌ, ๐ˆ๐ง๐ข๐ญ ๐๐ซ๐จ๐œ๐ž๐ฌ๐ฌ, ๐š๐ง๐ ๐๐ž๐ฒ๐จ๐ง๐: The process continues as we discussed earlier, with initramfs, the init process (often systemd in modern Ubuntu), and user-space services.

PranabNandy commented 2 months ago

๐Ÿ‘ฉโ€๐Ÿ’ป๐๐š๐ฌ๐ญ ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ ๐„๐ฑ๐ฉ๐ž๐ซ๐ข๐ž๐ง๐œ๐ž: The interview started with a discussion on my previous projects and experience with embedded systems. We delved into some technical questions and problem-solving scenarios.

One question that stood out was related to optimizing code for an embedded system with limited resources(Always limited ๐Ÿ˜ ).

๐Ÿ’ก ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ ๐๐ฎ๐ž๐ฌ๐ญ๐ข๐จ๐ง:

Question: "So How would you optimize following C code snippet for an embedded system with limited RAM and Flash memory?" I shared the following approach:

hashtag#๐™ž๐™ฃ๐™˜๐™ก๐™ช๐™™๐™š <๐™จ๐™ฉ๐™™๐™ž๐™ค.๐™>

/ ๐˜ฟ๐™š๐™›๐™ž๐™ฃ๐™š ๐™– ๐™˜๐™ช๐™จ๐™ฉ๐™ค๐™ข ๐™™๐™–๐™ฉ๐™– ๐™จ๐™ฉ๐™ง๐™ช๐™˜๐™ฉ๐™ช๐™ง๐™š ๐™ฉ๐™ค ๐™ค๐™ฅ๐™ฉ๐™ž๐™ข๐™ž๐™ฏ๐™š ๐™ข๐™š๐™ข๐™ค๐™ง๐™ฎ ๐™ช๐™จ๐™–๐™œ๐™š / ๐™ฉ๐™ฎ๐™ฅ๐™š๐™™๐™š๐™› ๐™จ๐™ฉ๐™ง๐™ช๐™˜๐™ฉ { ๐™ž๐™ฃ๐™ฉ ๐™ญ; ๐™›๐™ก๐™ค๐™–๐™ฉ ๐™ฎ; ๐™˜๐™๐™–๐™ง ๐™ฏ; } ๐˜พ๐™ค๐™ข๐™ฅ๐™–๐™˜๐™ฉ๐˜ฟ๐™–๐™ฉ๐™–;

๐™ž๐™ฃ๐™ฉ ๐™ข๐™–๐™ž๐™ฃ() { // ๐˜พ๐™ง๐™š๐™–๐™ฉ๐™š ๐™–๐™ฃ ๐™–๐™ง๐™ง๐™–๐™ฎ ๐™ค๐™› ๐˜พ๐™ค๐™ข๐™ฅ๐™–๐™˜๐™ฉ๐˜ฟ๐™–๐™ฉ๐™– ๐˜พ๐™ค๐™ข๐™ฅ๐™–๐™˜๐™ฉ๐˜ฟ๐™–๐™ฉ๐™– ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ[100];

// ๐™„๐™ฃ๐™ž๐™ฉ๐™ž๐™–๐™ก๐™ž๐™ฏ๐™š ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ ๐™š๐™ก๐™š๐™ข๐™š๐™ฃ๐™ฉ๐™จ ๐™›๐™ค๐™ง (๐™ž๐™ฃ๐™ฉ ๐™ž = 0; ๐™ž < 100; ++๐™ž) { ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ[๐™ž].๐™ญ = ๐™ž; ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ[๐™ž].๐™ฎ = 2.5 * ๐™ž; ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ[๐™ž].๐™ฏ = '๐˜ผ' + (๐™ž % 26); }

// ๐˜ผ๐™˜๐™˜๐™š๐™จ๐™จ ๐™–๐™ฃ๐™™ ๐™ข๐™–๐™ฃ๐™ž๐™ฅ๐™ช๐™ก๐™–๐™ฉ๐™š ๐™™๐™–๐™ฉ๐™–_๐™–๐™ง๐™ง๐™–๐™ฎ ๐™–๐™จ ๐™ฃ๐™š๐™š๐™™๐™š๐™™

๐™ง๐™š๐™ฉ๐™ช๐™ง๐™ฃ 0; }

โ„š๐•ฆ๐•š๐•”๐•œ ๐•ข๐•ฆ๐•–๐•ค๐•ฅ๐•š๐• ๐•Ÿ ~ โ„๐• ๐•จ ๐•จ๐• ๐•ฆ๐•๐•• ๐•ช๐• ๐•ฆ ๐•™๐•’๐•ง๐•– ๐• ๐•ก๐•ฅ๐•š๐•ž๐•š๐•ซ๐•–๐•• ๐•ฅ๐•™๐•– ๐•”๐• ๐••๐•–?

๐Ÿค“ In the code, I emphasized the importance of data structure design for memory optimization. By grouping related data fields into a custom structure (CompactData), we minimize padding and reduce memory overhead. This approach helps maximize the efficient use of RAM and Flash memory, a crucial consideration in embedded systems.

The interviewer appreciated the solution and we discussed further optimizations like using bitfields, minimizing global variables, and avoiding dynamic memory allocation.

Remember, interview questions like these often focus on your problem-solving skills and understanding of embedded systems constraints. Tailoring your solution to the specific requirements of the system is key. Hope this helps fellow embedded enthusiasts! Good luck with your interviews! ๐Ÿ’ช

PranabNandy commented 2 months ago

๐—ช๐—ต๐—ฎ๐˜ ๐—ถ๐˜€ ๐—จ๐—ฆ๐—• ๐˜๐—ผ ๐—ง๐—ง๐—Ÿ?

USB to TTL is a small device that allows your computerโ€™s USB port to communicate with other devices using a simpler communication method called TTL (Transistor-Transistor Logic). This is essential when working with devices like microcontrollers, which use serial communication instead of USB.

๐—›๐—ผ๐˜„ ๐——๐—ผ๐—ฒ๐˜€ ๐—œ๐˜ ๐—ช๐—ผ๐—ฟ๐—ธ? ๐—ฆ๐—ฒ๐—ฟ๐—ถ๐—ฎ๐—น ๐—–๐—ผ๐—บ๐—บ๐˜‚๐—ป๐—ถ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Many small electronic devices communicate using a method called serial communication. In serial communication, data is sent one bit at a time over a single wire, which is simple but effective for many applications. ๐—ง๐—ฟ๐—ฎ๐—ป๐˜€๐—น๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—ผ๐—ณ ๐—ฆ๐—ถ๐—ด๐—ป๐—ฎ๐—น๐˜€: Your computer sends data using USB, but most microcontrollers and sensors speak โ€œserial.โ€ The USB to TTL converter translates the USB signals from your computer into TTL-level serial signals. This allows your computer to send and receive data to and from the microcontroller. ๐—ฉ๐—ผ๐—น๐˜๐—ฎ๐—ด๐—ฒ ๐—Ÿ๐—ฒ๐˜ƒ๐—ฒ๐—น๐˜€: TTL signals usually operate at 3.3V or 5V, which are safe for small electronic components. The converter ensures that the voltage levels are correct so that your devices donโ€™t get damaged.

๐—˜๐˜…๐—ฎ๐—บ๐—ฝ๐—น๐—ฒ: Imagine youโ€™re working on a project where your microcontroller needs to send sensor data to your computer. Hereโ€™s how USB to TTL makes it happen: ๐—ฆ๐—ฒ๐—ป๐˜€๐—ผ๐—ฟ ๐——๐—ฎ๐˜๐—ฎ: The microcontroller collects data from a temperature sensor. This data is in the form of serial dataโ€”bits of information sent one after the other. ๐——๐—ฎ๐˜๐—ฎ ๐—ง๐—ฟ๐—ฎ๐—ป๐˜€๐—บ๐—ถ๐˜€๐˜€๐—ถ๐—ผ๐—ป: The microcontroller sends this serial data out through its serial port, which operates at TTL voltage levels. ๐—จ๐—ฆ๐—• ๐˜๐—ผ ๐—ง๐—ง๐—Ÿ ๐—–๐—ผ๐—ป๐˜ƒ๐—ฒ๐—ฟ๐˜๐—ฒ๐—ฟ: You connect the microcontroller to your computer using a USB to TTL converter. The converter translates the serial data into a form that your computer can understand through its USB port. ๐——๐—ฎ๐˜๐—ฎ ๐—ผ๐—ป ๐—ฌ๐—ผ๐˜‚๐—ฟ ๐—–๐—ผ๐—บ๐—ฝ๐˜‚๐˜๐—ฒ๐—ฟ: Your computer receives the sensor data, which you can then process, log, or display in real-time.

๐—ช๐—ต๐˜† ๐—œ๐˜โ€™๐˜€ ๐—œ๐—บ๐—ฝ๐—ผ๐—ฟ๐˜๐—ฎ๐—ป๐˜ USB to TTL converters are essential tools for anyone working with embedded systems, IoT devices, or DIY electronics. They provide a reliable way to connect your computer to various devices, enabling you to seamlessly program, debug, and interact with your projects.

PranabNandy commented 2 months ago

SPI Communication โ˜„

SPI (Serial Peripheral Interface) is a key protocol in embedded systems, allowing microcontrollers to communicate with devices like sensors and displays. Hereโ€™s a quick overview: Master-Slave Setup: One master device controls the communication, and the others are slaves. Four Main Lines: โžก MOSI: Master Out, Slave In โžก MISO: Master In, Slave Out โžก SCLK: Serial Clock โžก SS: Slave Select Full-Duplex: Data can be sent and received at the same time. Flexible Clock Settings: SPI can be configured for different devices with clock polarity and phase settings. SPI is fast and efficient, making it essential for many IoT and embedded applications. Learn more at https://media.licdn.com/dms/image/v2/D4D22AQHkCt1rGSDFwA/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1722947307172?e=1727308800&v=beta&t=WSV76hCmJCq-5LeWj8kFTJN-jfqoRFFcJlPepEObiy8

PranabNandy commented 2 months ago

UART Communication UART (Universal Asynchronous Receiver/Transmitter) is a fundamental serial communication protocol widely used in embedded systems. It enables devices to exchange data without a shared clock, making it simple and efficient for short-distance communication.

๐Ÿ”น Key Features: Asynchronous: No shared clock needed. Data Packets: Start bit, data bits, optional parity bit, stop bits. Baud Rate: Common rates include 9600, 19200, 115200 bps.

๐Ÿ”น Pros: Easy to implement. Full-duplex capability. Optional error detection with parity bits.

๐Ÿ”น Cons: Best for short distances. Limited speed compared to protocols like SPI/I2C. Ideal for microcontroller communication, peripheral interfaces, and legacy serial devices. Understanding UART is crucial for designing and debugging embedded systems.

PranabNandy commented 2 months ago

Understanding System Calls vs. Library Calls

System Call:

A system call is a function provided by the operating system (OS) that allows programs to request services from the kernel, such as accessing hardware or managing system resources. System calls are essential for performing tasks like reading from a file or handling network communication, as they provide a controlled interface to interact with hardware without needing to manage the details directly.

Library Function:

Library functions, on the other hand, are predefined functions that operate in user space. These functions are part of libraries (like the C Standard Library) and help with a wide range of tasks, from string manipulation to complex mathematical operations, making coding more efficient and modular.

Key Differences:

  1. Communication Levels:

Library Call: Involves direct communication between the application and the library.

System Call: Involves three levels of communicationโ€”first, the application calls a wrapper function, which then triggers a software interrupt to interact with the kernel, where the system call is executed.

  1. Argument Passing:

Library Call: Arguments are typically passed via the stack.

System Call: Arguments are often passed through CPU registers, providing faster access for the kernel.

  1. Invocation Method:

Library Call: Functions are invoked by their name or memory address.

System Call: Invoked using a unique ID and generally involves a software interrupt.

  1. Wrapper Routine:

Library Call: Called directly without the need for a wrapper.

System Call: Usually involves a wrapper routine to switch from user mode to kernel mode.

  1. User Friendliness:

Library Call: Abstracts system complexities, making them user-friendly.

System Call: Provides essential functions while abstracting hardware details, but involves more complexity due to the kernel interaction.

PranabNandy commented 2 months ago

Screenshot from 2024-08-26 22-34-58 Screenshot from 2024-08-26 22-35-25