mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
68 lines
1.5 KiB
C
68 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2022 HAW Hamburg
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for ENC28J60 ethernet device driver
|
|
*
|
|
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "shell.h"
|
|
#include "assert.h"
|
|
#include "enc28j60.h"
|
|
#include "enc28j60_params.h"
|
|
#include "test_utils/netdev_eth_minimal.h"
|
|
#include "init_dev.h"
|
|
|
|
static enc28j60_t enc28j60[ENC28J60_NUM];
|
|
|
|
int netdev_eth_minimal_init_devs(netdev_event_cb_t cb) {
|
|
for (unsigned i = 0; i < ENC28J60_NUM; i++) {
|
|
netdev_t *device = &enc28j60[i].netdev;
|
|
|
|
/* setup the specific driver */
|
|
enc28j60_setup(&enc28j60[i], &enc28j60_params[i], i);
|
|
|
|
/* set the application-provided callback */
|
|
device->event_callback = cb;
|
|
|
|
/* initialize the device driver */
|
|
int res = device->driver->init(device);
|
|
assert(!res);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
puts("Test application for ENC28J60 ethernet device driver");
|
|
|
|
int res = netdev_eth_minimal_init();
|
|
if (res) {
|
|
puts("Error initializing devices");
|
|
return 1;
|
|
}
|
|
|
|
/* start the shell */
|
|
puts("Initialization successful - starting the shell now");
|
|
|
|
char line_buf[SHELL_DEFAULT_BUFSIZE];
|
|
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
|
|
|
|
return 0;
|
|
}
|