OpenRTX/tests/platform/boot_test.c
Ryan Turner 95fdcd5fe2 copyright-and-license: adopt SPDX-compliant header
This change removes the old copyright header from project sources and
replaces it with a new simplified SPDX-compliant header. Note that files
that were missing the header but reasonably understood to be licensed
according to the root license were not corrected.

Signed-off-by: Ryan Turner <ryan@turnrye.com>
2026-01-14 20:10:07 +01:00

24 lines
395 B
C

/*
* SPDX-FileCopyrightText: Copyright 2020-2026 OpenRTX Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <stdio.h>
#include "interfaces/platform.h"
#include "interfaces/delays.h"
int main()
{
platform_init();
while(1)
{
platform_ledOn(GREEN);
delayMs(1000);
platform_ledOff(GREEN);
delayMs(1000);
}
return 0;
}