19 lines
227 B
C
19 lines
227 B
C
/*
|
|
* solar_mppt_converter.c
|
|
*
|
|
* Created: 11-05-2025 19:01:26
|
|
* Author : Christian L. V. Madsen (OZ1CM)
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
/* Replace with your application code */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|