1
I’m trying to make the definition of types below but the Arduino accuses error of type declaration.
/*Estrutura que abstrai a seringa*/
struct {
int pot[7];
float nivel[7] = {0, 0.5, 1, 1.5, 2, 2.5, 3};
} seri;
/*Definição do tipo de dado abstrato Seringa*/
typedef struct seri Seringa;
/*Instanciação da variável seringa (minúsculo) do tipo Seringa (maiúsculo)*/
Seringa *seringa;
seringa = malloc(sizeof(struct seri));
*Arduino: 1.8.10 (Linux), Board: "Arduino/Genuino Uno" syringe:18:1: error: 'syringe' does not name a type syringe = malloc(sizeof(struct Seri));
Keeps making the same mistake.
– Lucas Lopes