#include "hal_led.h"

int hal_led_seton(const int in_index)
{
  int ret = 0;

  if (2 == in_index)
  {
    ret = 1;
  }
  return ret;
}

int hal_led_setoff(const int in_index)
{
  int ret = 0;

  if (2 == in_index)
  {
    ret = 1;
  }
  return ret;
}

/* eof */