Misc changes from Richard Cochran
This commit is contained in:
parent
be474523c4
commit
32b4a48e7a
|
@ -6463,5 +6463,6 @@
|
|||
is not really important because up_disable_irq() is not really used
|
||||
for that purpose. But some spurions STM32 ADC interrupts have been
|
||||
reported to me and this turned out to be the cause in that case. My
|
||||
concern not that up_disable_irq() works is that there may now be
|
||||
unmasked bugs that leave devices in the disabled state? (2014-1-15).
|
||||
concern now that up_disable_irq() works is that there may now be
|
||||
unmasked bugs that leave devices in the disabled state? Thanks to
|
||||
Manuel Stühn for the tip(2014-1-15).
|
||||
|
|
|
@ -234,7 +234,7 @@ arch/avr
|
|||
MCU families. STATUS: Under development.
|
||||
|
||||
arch/avr/include/avr and arch/avr/src/avr
|
||||
Common support for all 8-bit VR MCUs
|
||||
Common support for all 8-bit AVR MCUs
|
||||
|
||||
arch/avr/include/atmega and arch/avr/src/atmega
|
||||
Support specifically for the AVR ATMega family (specifically only for
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* arch/avr/include/avr/atmega/irq.h
|
||||
* arch/avr/include/atmega/irq.h
|
||||
*
|
||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* arch/avr32/src/atmega/atmega_head.S
|
||||
* arch/avr/src/atmega/atmega_head.S
|
||||
*
|
||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
/************************************************************************************
|
||||
* configs/amber/src/up_boot.c
|
||||
* arch/mips/src/board/up_boot.c
|
||||
*
|
||||
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
|
|
@ -343,7 +343,7 @@ CONFIG_NET_TCP_RECVDELAY=0
|
|||
CONFIG_NET_UDP=y
|
||||
CONFIG_NET_UDP_CHECKSUMS=y
|
||||
CONFIG_NET_UDP_CONNS=8
|
||||
# CONFIG_NET_BROADCAST is not set
|
||||
CONFIG_NET_BROADCAST=y
|
||||
CONFIG_NET_ICMP=y
|
||||
CONFIG_NET_ICMP_PING=y
|
||||
# CONFIG_NET_PINGADDRCONF is not set
|
||||
|
|
|
@ -343,7 +343,7 @@ CONFIG_NET_TCP_RECVDELAY=0
|
|||
CONFIG_NET_UDP=y
|
||||
CONFIG_NET_UDP_CHECKSUMS=y
|
||||
CONFIG_NET_UDP_CONNS=8
|
||||
# CONFIG_NET_BROADCAST is not set
|
||||
CONFIG_NET_BROADCAST=y
|
||||
CONFIG_NET_ICMP=y
|
||||
CONFIG_NET_ICMP_PING=y
|
||||
# CONFIG_NET_PINGADDRCONF is not set
|
||||
|
|
|
@ -375,7 +375,7 @@ CONFIG_NET_TCPBACKLOG=y
|
|||
CONFIG_NET_UDP=y
|
||||
CONFIG_NET_UDP_CHECKSUMS=y
|
||||
CONFIG_NET_UDP_CONNS=8
|
||||
# CONFIG_NET_BROADCAST is not set
|
||||
CONFIG_NET_BROADCAST=y
|
||||
CONFIG_NET_ICMP=y
|
||||
CONFIG_NET_ICMP_PING=y
|
||||
# CONFIG_NET_PINGADDRCONF is not set
|
||||
|
|
|
@ -193,14 +193,14 @@ fi
|
|||
|
||||
# Okay... Everything looks good. Setup the configuration
|
||||
|
||||
install "${src_makedefs}" "${dest_makedefs}" || \
|
||||
install --mode=644 "${src_makedefs}" "${dest_makedefs}" || \
|
||||
{ echo "Failed to copy \"${src_makedefs}\"" ; exit 7 ; }
|
||||
if [ "X${have_setenv}" = "Xy" ]; then
|
||||
install "${src_setenv}" "${dest_setenv}" || \
|
||||
{ echo "Failed to copy ${src_setenv}" ; exit 8 ; }
|
||||
chmod 755 "${dest_setenv}"
|
||||
fi
|
||||
install "${src_config}" "${dest_config}" || \
|
||||
install --mode=644 "${src_config}" "${dest_config}" || \
|
||||
{ echo "Failed to copy \"${src_config}\"" ; exit 9 ; }
|
||||
|
||||
# If we did not use the CONFIG_APPS_DIR that was in the defconfig config file,
|
||||
|
@ -227,7 +227,7 @@ if [ ! -z "${appdir}" -a "X${newconfig}" != "Xy" ]; then
|
|||
if [ ! -r "${configpath}/appconfig" ]; then
|
||||
echo "NOTE: No readable appconfig file found in ${configpath}"
|
||||
else
|
||||
install "${configpath}/appconfig" "${TOPDIR}/${posappdir}/.config" || \
|
||||
install --mode=644 "${configpath}/appconfig" "${TOPDIR}/${posappdir}/.config" || \
|
||||
{ echo "Failed to copy ${configpath}/appconfig" ; exit 10 ; }
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue