Xiang Xiao
98a429596f
system/ping/ping.c and system/ping6/ping6.c: Set optind to zero in the error case
...
system/ping/ping.c and system/ping6/ping6.c: Move all ping preparation work into icmp_ping
system/ping/ping.c and system/ping6/ping6.c: Support -W <timeout> and -s <size> option
system/ping/ping.c and system/ping6/ping6.c: Decouple the output from ping logic
2018-11-08 09:05:54 -06:00
wangyanjiong
bd86d9c8b8
apps/examples/gpio: Align with gpio driver update
2018-11-08 07:50:42 -06:00
anchao
3432acf7c4
apps/: Rename BINFMT_EXEPATH to LIB_ENVPATH.
2018-11-08 07:31:52 -06:00
Gregory Nutt
aeabc12536
apps/examples/mld: Fix incorrect format of IPv6 Mulitcast address. This resolves the UPD sendto() problem of commit 09691dd48f
that was being blamed on the UDP stack. Nope.. cockpit error.
2018-11-07 18:19:09 -06:00
Gregory Nutt
48ebc1377a
apps/netutils/pppd/: More changes for consistency in coding style.
2018-11-07 13:43:51 -06:00
Gregory Nutt
bb21a11a60
apps/netutils/pppd: Fix some naming convention violations.
2018-11-07 13:37:37 -06:00
Xiang Xiao
cddfda99f0
apps/netutils/pppd: Refine and fix pppd code.
...
Reviewers note: Reviewing the changes I also see that these file did not follow the NuttX codings standard. I ran all files through nuttx/tools/indent.sh, manually reviewed all files for coding style issues. I also changed occurrences of non-standard types u8_t, u16_t, and u32_t to the standard uint8_t, uint16_t, and uint32_t.
2018-11-07 12:43:42 -06:00
Xiang Xiao
c1f0653c85
apps/netutils/chat and apps/examples/chat: 'constify' chat variables and parameters
2018-11-07 11:55:09 -06:00
anchao
42ce384259
apps/system/vi/vi.c: Do not print error if the file does not exist.
2018-11-07 11:43:04 -06:00
Xiang Xiao
4804d74c61
apps/system/system.c: Fix warning when passing argument 6 of 'task_spawn' from incompatible pointer type [-Wincompatible-pointer-types]
2018-11-07 11:37:00 -06:00
From: dongjiuzhu
2d4df65040
apps/system/i2c/i2c_get.c: Fix i2c_msg freq initialization problem. Typo prevent I2C frequency initialization in a struct i2c_msg.
2018-11-07 11:35:13 -06:00
zhuyanlin
3de5798ff4
apps/system/hexed/src/bfile.c: Fix memory leak
2018-11-07 11:32:07 -06:00
Xiang Xiao
2db0252e61
nshlib/nsh_envcmds.c: Fix warning g_oldpwd defined but not used [-Wunused-const-variable]
2018-11-07 11:28:28 -06:00
Xiang Xiao
6aee984c91
nshlib/nsh_netinit.c: Move call netlib_icmpv6_autoconfiguration() into nsh_net_bringup() like DHCP
2018-11-07 11:25:39 -06:00
Xiang Xiao
173c985395
nshlib/nsh_fsutils.c: nsh_catfile() should not append '\n' if the last char in file is already '\n'
2018-11-07 11:23:07 -06:00
ligd
19dc7cd3b3
nshlib/nsh_console.c: Add fflush to nsh_consolewrite(). This resolves this problem:
...
> cat /dev/ttyCP &
> echo ls >/dev/ttyCP
Can't get the 'ls' result immediately, because 'cat' cmd uses nsh_consolewrite() and that uses fwrite with no fflush. We can get the 'ls' result after type '\n', because nsh will fflush output when get '\n'.
2018-11-07 11:18:03 -06:00
Gregory Nutt
09691dd48f
apps/examples/mld: Add logic to set up the routing table before attempting to send the multicast packet. Still some problem, probably in NuttX stack: Still reports that the the multicast address is unreachable.
2018-11-07 10:43:03 -06:00
Gregory Nutt
dc02239347
apps/examples/mld/mld_main.c: Improve test by periodically dumping the content of /proc/net/mld (if available).
2018-11-06 10:41:01 -06:00
Daniel P. Carvalho
bc4735ce2a
apps/examples/ina226: Added INA226 example
2018-11-05 16:45:00 -06:00
Anatol Ivanov
3512c3aa5e
apps/Makefile: Fix Windows native build patch extension.
2018-11-05 16:09:03 -06:00
Gregory Nutt
74ac55308c
examples/mld/mld_main.c: ifdef out some bogus logic in the test.
2018-11-05 09:39:55 -06:00
Gregory Nutt
44e2505038
apps/examples/mld: Add a test of MLD. Not much of a test, but it does provide a mechansim for some low-level bring-up operations.
2018-11-04 18:21:32 -06:00
Gregory Nutt
7b56c9c336
apps/include/netutils/ipmsfilter.h: Eliminate error generated by bad pre-processor logic.
2018-11-02 08:32:18 -06:00
Alan Carvalho de Assis
47e647c56a
examples/mlx90614/mlx90614_main.c: Include support to change device address on mlx90614
2018-11-02 07:07:36 -06:00
Anthony Merlino
1617e0dcf0
Merged in antmerlino/apps/i8sak-txpwr (pull request #159 )
...
wireless/ieee802154/i8sak: Adds support for getting/setting transmit power.
Approved-by: GregoryN <gnutt@nuttx.org>
2018-11-01 19:04:28 +00:00
Gregory Nutt
a26a7f9767
apps/netutils/netlib and apps/examples/igmp: Adapt to use the corrected, semi-standard version of struct ip_msfilter.
2018-10-29 06:51:56 -06:00
Alan Carvalho de Assis
3a4faf944a
apps/examples/mlx90614: Add mlx90614 test example
2018-10-28 16:04:15 -06:00
Gregory Nutt
a579bab48a
apps/system/progmem: Remove this utility. It makes illegal direct calls into the OS.
2018-10-19 11:44:41 -06:00
Gregory Nutt
e363b27b09
apps/netutils/codecs/base64.c: Cosmetic changes from review. Various coding style issues and removed all old commented out code.
2018-10-19 06:40:44 -06:00
Aleksandr Vyhovanec
9aa2f5c5a2
Merged in AVyhovanec/apps (pull request #158 )
...
"dst" overflow protection when base64 string ends with "="
Approved-by: GregoryN <gnutt@nuttx.org>
2018-10-19 12:29:12 +00:00
Anthony Merlino
0989023de7
Merged in antmerlino/apps/i8sak-event-fix (pull request #157 )
...
i8sak: Properly shuts down event thread.
Approved-by: GregoryN <gnutt@nuttx.org>
2018-10-06 20:12:26 +00:00
Gregory Nutt
b5e032e050
apps/nshlib/README.txt: Another trivial update.
2018-10-02 13:47:16 -06:00
Gregory Nutt
3a474c573c
apps/nshlib/README.txt: Trivial correction in comparison to Bash behavior.
2018-10-02 12:15:07 -06:00
Gregory Nutt
cf6c6a9556
apps/nshlib: If CONFIG_NSH_VARS=y, the NSH 'set' command with not argument will list all of the local NSH variables.
2018-10-02 11:54:18 -06:00
Gregory Nutt
cb982ea8df
apps/nshlib: Eliminate more new warnings found in build testing.
2018-10-02 11:16:15 -06:00
Gregory Nutt
2bc4d1e8e2
apps/nshlib/nsh_parse.c: Fix a warning (really a bug) detected in build testing.
2018-10-02 11:08:17 -06:00
Gregory Nutt
7f7b728231
apps/nshlib/nsh_parse.c: Correct an error in conditional compilation found in build testing.
2018-10-02 10:21:33 -06:00
Gregory Nutt
8b01ea4434
Update a README/Improve some C comments.
2018-10-02 06:53:16 -06:00
Gregory Nutt
65e0b791b7
apps/nshlib/nsh_envcmds.c: Once an NSH variable has been promoted to an environment variable, subsequent set operations should act on the environment variable rather than creating a new NSH variable that shadows the environment variable.
2018-10-01 16:22:04 -06:00
Gregory Nutt
ee01445aa2
apps/nshlib: Fix an incorrect usage of a configuration variable in a previous commit.
2018-10-01 15:44:41 -06:00
Gregory Nutt
23b32baf98
apps/nshlib: Update README.txt
2018-10-01 14:28:07 -06:00
Gregory Nutt
15da89649d
Damn. Forgot to add a file before the last commit.. AGAIN.
2018-10-01 13:31:06 -06:00
Gregory Nutt
e9edfd064f
apps/nshlib: Add support for NSH local variables if CONFIG_NSH_VARS are set. These are like environment variables but are local to NSH. The importance of this is that these variables are *not* inherited when NSH creates a new task. The new command 'export' was added. In this case, the NSH variable will be promoted to an environment variable and will then be inherited by any tasks executed by NSH.
2018-10-01 13:30:25 -06:00
Gregory Nutt
d376723ad2
Trivial typo fix
2018-09-30 11:16:10 -06:00
Gregory Nutt
14a262001d
apps/nshlib: Add support for the 'env' command.
2018-09-30 10:55:23 -06:00
Gregory Nutt
386c29bbaf
netutils/netlib/netlib_parsehttpurl.c: Rethink last commit. I think it still needs to continue parsing to the end of the hostname string after the E2BIG error has occurred.
2018-09-30 08:46:52 -06:00
Gregory Nutt
2d9a916be1
apps/netutils/netlib/netlib_parsehttpurl.c: Correct handling of long URLs as noted in Bitbucket issue #119 (in the nuttx/ repository, not the apps/ repository).
2018-09-30 08:33:10 -06:00
Gregory Nutt
57233f5d6d
Merge branch 'master' of bitbucket.org:nuttx/apps
2018-09-29 12:09:33 -06:00
Gregory Nutt
f7895ef681
apps/examples/fstest: Add configuration option to customize stack size. Detect when the media is full and stop writing files. Report total file size.
2018-09-29 11:52:39 -06:00
Gregory Nutt
6aacb3e03f
apps/examples/fstest: Fix coding error in last commit.
2018-09-29 07:47:46 -06:00