Pigmeo was a compiler and framework for writing microcontroller firmware in C# and other .NET languages, developed by Adrián Bulnes (Urriellu) between 2007 and 2010. This is a frozen, read-only archive of the project’s website, pigmeo.org; nothing here is maintained. Source code: github.com/Urriellu/pigmeo · Original capture: Wayback Machine · urriellu.net

CFG0004

From Pigmeo - .NET/Mono/CLI (C#, VB.NET, C++/CLI, Nemerle...) for microcontrollers (PIC, dsPIC, AVR...)

Required XML Node not found in the config file

One of the required XML nodes was not found within your configuration file.

Contents

Example

The "Target" node is required, so your source file should look like:

<PigmeoCompilerConfig fileversion="1.0">
	<Target>
		[more things]
	</Target>
	[more things]
</PigmeoCompilerConfig>

but it was not found

Usual mistakes

It doesn't exist

obviosly...

Mispelled tag

You think it does exist but its tag was mispelled, as in:

<PigmeoCompilerConfig fileversion="1.0">
	<Targget>
		[more things]
	</Target>
	[more things]
</PigmeoCompilerConfig>