Skip to content
Snippets Groups Projects
Commit 8ed8fb28 authored by patacongo's avatar patacongo
Browse files

Fix compile issues

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2377 42af7a65-404d-4744-a932-0658087f49c3
parent 74e28930
No related branches found
No related tags found
No related merge requests found
......@@ -1875,10 +1875,10 @@ static void c5471_eimconfig(struct c5471_driver_s *c5471)
putreg32(pbuf, desc);
desc += sizeof(uint32_t);
putreg(0, pbuf);
putreg32(0, pbuf);
pbuf += EIM_PACKET_BYTES;
putreg(0, pbuf);
putreg32(0, pbuf);
pbuf += sizeof(uint32_t); /* Ether Module's "Buffer Usage Word" */
}
......
......@@ -194,9 +194,11 @@ int user_start(int argc, char *argv[])
}
#endif
#ifdef CONFIG_NET_TCP
printf("Starting webserver\n");
httpd_init();
httpd_listen();
#endif
while(1)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment