How to run a C++ TCP/IP server on Raspberry Pi

This guide will explain how to create a TCP/IP Server on Raspberry Pi 3 B, running Raspbian (or Raspbian Lite). The source code file is written in C/C++ language. The source code is very simple and short. The code below is available on this website, and uses Linux sockets to create a TCP/IP server on … Continue reading "How to run a C++ TCP/IP server on Raspberry Pi"

How Atmel Studio converts C language code into Assembly

This article has the purpose to explain how Atmel Studio converts C/C++ language software into Assembly code, and then into a HEX file. In a previous article, I already explained how to compile a simple C program using Atmel Studio, and flash it on an Arduino Nano equipped with Atmel ATmega328p microcontroller. The "Hello World" … Continue reading "How Atmel Studio converts C language code into Assembly"