Remove base.h

radio-abstraction
Savanni D'Gerinel 2022-07-30 00:38:41 -04:00
parent e287957168
commit 309475bcbc
3 changed files with 2 additions and 23 deletions

View File

@ -1,9 +0,0 @@
#include <stdint.h>
#include <stdbool.h>
#ifdef AVR
#else
#endif

View File

@ -94,18 +94,6 @@
}; };
*/ */
packages."x86_64-linux"."base" =
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in mkLibrary {
pkgs = pkgs;
gcc = pkgs.gcc;
cflags = "-Werror -Wall";
pname = "base";
psrc = ./base;
pbuildInputs = [ ];
};
packages."x86_64-linux"."rng" = packages."x86_64-linux"."rng" =
let let
pkgs = import nixpkgs { system = "x86_64-linux"; }; pkgs = import nixpkgs { system = "x86_64-linux"; };
@ -115,7 +103,6 @@
cflags = "-Werror -Wall"; cflags = "-Werror -Wall";
pname = "rng"; pname = "rng";
psrc = ./rng; psrc = ./rng;
pbuildInputs = [ packages."x86_64-linux"."base" ];
}; };
/* /*

View File

@ -1,4 +1,5 @@
#include <base.h>
#include <stdint.h>
#ifndef __RNG_H__ #ifndef __RNG_H__
#define __RNG_H__ #define __RNG_H__