/** * \file util.c * \brief Utility functions * * \subsection Copyright * Copyright (c) 2022 Michael Buesch * * \subsection License * Licensed under the terms of the GNU General Public License version 2. */ #include "util.h" const uint8_t bit2mask_lt[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, };