Skip to content
Commits on Source (2)
......@@ -15,16 +15,16 @@ config HN70AP_HWDEBUG_BLINK
bool "Just Blink leds instead of starting NuttX"
config HN70AP_EEPROM
bool "Enable EEPROM"
bool "Enable EEPROM (requires I2C3)"
config HN70AP_SPIFLASH
bool "Enable SPI FLASH"
bool "Enable SPI FLASH (requires SPI2)"
config HN70AP_SCREEN
bool "Enable OLED screen"
bool "Enable OLED screen (requires I2C3)"
config HN70AP_ETHERNET
bool "Enable Ethernet"
bool "Enable Ethernet (requires ETHMAC)"
select ARCH_PHY_INTERRUPT if NETDEVICES
if HN70AP_ETHERNET
......@@ -39,7 +39,7 @@ config HN70AP_RADIO
bool
config HN70AP_MAINRADIO
bool "Enable main radio"
bool "Enable main radio (requires SPI4)"
select HN70AP_RADIO
if HN70AP_MAINRADIO
......@@ -50,7 +50,7 @@ config HN70AP_MAINRADIO_TCXO
endif
config HN70AP_AUXRADIO
bool "Enable aux radio"
bool "Enable aux radio (requires SPI4)"
select HN70AP_RADIO
if HN70AP_AUXRADIO
......
......@@ -190,7 +190,7 @@ again:
/* Write last partial page */
if(ctx->block_received>0)
{
printf("WRITE LAST [%u]:",ctx->block_id);
printf("\nWRITE LAST [%u]:",ctx->block_id);
if(ctx->block_id > 63)
{
ctx->datacrc = crc32_do(ctx->datacrc, ctx->block, ctx->block_received);
......
......@@ -1245,7 +1245,7 @@ CONFIG_NET_IPv4=y
CONFIG_NSOCKET_DESCRIPTORS=8
CONFIG_NET_NACTIVESOCKETS=16
CONFIG_NET_SOCKOPTS=y
# CONFIG_NET_TCPPROTO_OPTIONS is not set
CONFIG_NET_TCPPROTO_OPTIONS=y
# CONFIG_NET_SOLINGER is not set
#
......@@ -1263,7 +1263,7 @@ CONFIG_NET_SOCKOPTS=y
#
CONFIG_NET_TCP=y
# CONFIG_NET_TCP_NO_STACK is not set
# CONFIG_NET_TCP_KEEPALIVE is not set
CONFIG_NET_TCP_KEEPALIVE=y
# CONFIG_NET_TCPURGDATA is not set
# CONFIG_NET_TCP_REASSEMBLY is not set
CONFIG_NET_TCP_CONNS=8
......