Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nuttx-apps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
nuttx-apps
Repository graph
Repository graph
You can move around the graph by using the arrow keys.
c13b9e6a51ee7c45c55b02988862943aaba6652f
Select Git revision
Branches
1
master
default
protected
Tags
20
nuttx-7.20
nuttx-7.19
nuttx-7.18
nuttx-7.17
nuttx-7.16
nuttx-7.15
nuttx-7.14
nuttx-7.13
nuttx-7.12
nuttx-7.11
nuttx-5.19
nuttx-6.0
nuttx-6.1
nuttx-6.10
nuttx-6.11
nuttx-6.2
nuttx-6.3
nuttx-6.4
nuttx-6.5
nuttx-6.6
21 results
Begin with the selected commit
Created with Raphaël 2.2.0
25
Jul
24
23
21
20
19
18
17
16
15
14
13
12
11
10
9
8
7
6
5
4
1
30
Jun
27
24
23
22
21
20
17
16
14
13
12
11
10
9
8
7
6
5
3
2
1
31
May
30
25
23
22
21
19
18
12
11
10
9
6
5
3
24
Apr
22
20
17
14
6
4
3
1
30
Mar
28
26
25
24
22
21
17
16
14
11
1
24
Feb
23
22
21
20
19
15
14
9
8
6
5
2
1
31
Jan
30
29
28
27
23
22
21
20
19
18
17
14
13
8
6
5
4
1
31
Dec
30
15
14
13
12
11
7
5
2
30
Nov
29
28
27
26
25
24
23
22
21
18
17
13
12
10
9
5
3
2
1
13
Oct
12
10
9
8
7
6
3
2
1
30
Sep
29
25
24
23
11
10
8
7
5
3
2
1
31
Aug
30
27
26
24
23
21
20
18
17
14
13
12
11
10
9
8
7
4
31
Jul
30
29
28
27
26
25
24
23
24
23
22
21
17
14
13
12
11
10
9
8
6
5
4
3
2
1
29
Jun
28
26
21
20
18
16
12
9
7
6
5
Prep for 7.17 release
Update ChangeLog
Merged in paulpatience/nuttx-apps/libcanard (pull request #55)
apps/canutils/libcanard: Update version
Move include/nuttx/regex.h to include/nuttx/lib/regex.h
Move include/nuttx/configdata.h to include/nuttx/mtd/configdata.h
(1) Make.defs set the include path in CFLAGS, but not in CXXFLAGS, (2) canutils/libuavcan/Makefile should not use explication / delimiters. It should not use -I. I should use DELIM: command not found and nuttx/tools/incdir.sh
Version b28bf6... of apps/canutils/libcanard must not be patched due to moving can.h
ramdisk.h moved from include/fs/nuttx/ to include/nuttx/drivers.
pwm.h moved from include/nuttx/ to include/nuttx/drivers.
can.h moved from include/nuttx/ to include/nuttx/drivers.
Driver related prototypes moved out of include/nuttx/fs/fs.h and into new include/drivers/drivers.h
Things that use mkfifo() and pipe() depend on CONFIG_PIPES
apps/examples/pty_test: If CONFIG_SERIAL_TERMIOS is not selected, then don't call tcgetattr or tcsetattr.
Eliminate some warnings
Merged in ziggurat29/apps (pull request #54)
minor; media app is intended to take either a command line argument, or a compiled-in default value from config. However, the default is ignored, leading to confusing error messages.
Merged nuttx/apps into master
Fix comment string
apps/examples/pty_test: Use of POLL must be optional. There are still a few character drivers that do not support it.
apps/examples/pty_test: Add termios calls to convert LF to CR-LF on writes
Fix a couple of cosmetic alignment issues
Extensions to examples/pty_test
PTY: Fix a few errors from early testing
apps/examples/pty_test: PTY test program
NSH: Eliminate a warning about discarding const
When Priority Inheritance is enabled, the format of /proc/<PID>/status changes to show both the current priority and the thread’s base priority. This messes up the format of cmd_ps.
Update ChangeLog
ESP8266 Kconfig: Select ARCH_HAVE_NET when NETUTILS_ESP8266 is selected. This allows, among other things, support for network debug output.
Merged nuttx/apps into master
NSH library: Don't show stack usage is CONFIG_STACK_COLORATION is not enabled.
apps/netutils/cJSON: Eliminate some warnings
Merged nuttx/apps into master
Use fixed point math for cmd_ps removing dependency on floating point libs.
uIP webserver: Fix a data declaration in a header file.
Merge branch 'appinc'
Add apps/include to include path in top-level Make.defs file. Remove multiple definitions of INCDIR opt.
This is the Pokemon patch to change all includes fronm <apps/bla/bla.h> to "bla/bla.h"
Fix a typo a a preceding change.
Recent enhancements to cmd_ps trips a floating point exception if LIBC_FLOATINGPOINT is not defined (at least on Cortex M4 w/ hardfloat). I’m using a buildroot gcc configured to support Cortex-M4F and the hard float ABI, target files are compiles with: -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=hard. I’m not sure the best way to address this, but the attached patch file is the first that comes to mind. Note, I added the float qualifier ‘F’ after a few constants to prevent the compiler from promoting the multiplication and division to double (expensive on M4F) then demoting to single float for the store. (sorry, it’s one of my many pet peeves ;)
Loading