You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
388 B

#ifndef __HW_PLATTFORM_HPP__
#define __HW_PLATTFORM_HPP__
//
// csl ressources
//
#include "./../csl/implementations/dummy/dummy_pin.hpp"
//
// drivers
//
#include "./../drivers/LED.hpp"
struct HW_plattform
{
Dummy_Pin pin_0, pin_1;
LED<Dummy_Pin> led_0;
HW_plattform():
pin_0(),
pin_1(),
led_0(pin_0)
{}
};
#endif // __HW_PLATTFORM_HPP__