Skip to content

Instantly share code, notes, and snippets.

@hans-jorg
hans-jorg / VSCODE-C.md
Last active February 13, 2024 02:03
VS Code for C Development including for Embedded Systems

Using VS Code for C development including for Embedded Systems

Contents

  • Introduction
  • Installation
  • Single C file project
  • A simple project with two C files
@hans-jorg
hans-jorg / bitmanip.h
Last active June 13, 2022 16:51
Bit manipulation macros
#ifndef BITMANIP_H
#define BITMANIP_H
/**
* @brief Macros for bit and bitfields manipulation
*/
///@{
// Bit macro (LSB=0)
#define BIT(N) (1UL<<(N))
// Bit manipulation using masks
#define BITSET(V,M) (V)|=(M)