ttl-fpga/sw/kousaten/src/fpga_cell_none.c

21 lines
479 B
C
Raw Normal View History

2019-06-16 21:27:42 +02:00
#include "fpga_cell_none.h"
#include <stdlib.h>
2019-06-18 20:15:35 +02:00
#include "fpga_global.h"
2019-06-16 21:27:42 +02:00
2019-06-18 20:15:35 +02:00
struct fpga_cell *fpga_cell_none_new()
2019-06-16 21:27:42 +02:00
{
struct fpga_cell_none *fpga_cell_none;
fpga_cell_none = malloc(sizeof(struct fpga_cell_none));
2019-06-18 20:15:35 +02:00
return FPGA_TO_CELL(fpga_cell_none);
}
struct fpga_cell *fpga_cell_none_get_next_isp(struct fpga_cell *fpga_cell,
enum fpga_isp_channel *isp_channel)
{
report(LL_WARNING,
"ISP signal ran into empty cell. Terminating chain.");
return NULL;
2019-06-16 21:27:42 +02:00
}