-
Notifications
You must be signed in to change notification settings - Fork 13.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log conversion MATLAB script runs into a Mathworks bug #142
Comments
Is there no way to copy the mac hack to win? I'm sorry, it's hard for me to reproduce and fix this since I don't have a Matlab copy for Windows here and downloading from ides over VPN takes normally longer than the internet connection here lasts till it resets. |
I think I found a workaround for now (already in master). Closing for now, should be good enough. |
PX4BuildBot
pushed a commit
that referenced
this issue
Jun 24, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@9a1fb02 Changes from PX4-NuttX/nuttx (PX4/NuttX@6377532) in current PX4/master (aa270fc) PX4/NuttX@6377532...9a1fb02 9a1fb02 (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt a9a0570 [PX4: REJECTED] cstdint fix 0ce3d20 [PX4: REJECTED] add math.h 22ef6cc [PX4: WIP] Jenkinsfile fe592d5 (origin/master) include/limits.h: Fix a signed-ness error introduced in a recent commit. Documentation/: Update acronym list. 34aeb08 Documentation/: Remove some old, early prototype NuttX logo images. 1acfac3 net/: More fixes to wrong comments from old change from the interrupt driven network to the work-queue driven network. aabdc00 net/: Fix some incorrect comments that go back for years (but have also been cloned in newer files). The network was once interrupt driver, but now runs on the work queue with a semaphore to enforce mutual exclusion. a0e169a net/: Fix a sixlowpan typo bug recently introduced; Rename g_ipv6_allzeroaddre with the more meaning g_ipv6_unspecaddr since the all-zero address is the IPv6 unspecified address (sometime IN6_ADDR_ANY). Remove more inline tests for IPv6 multicast with tcommint net_is_addr_mcast() macro. Update some comments. 5bb216f net/: There are many different checks for IPv6 multicast addresses. Most of the checks are different. RFC 3513 clearly specifies how to detect an IPv6 multilcast address: they should begin with 0xffxx. I did not change some of the checks in ipv6_input.c, however. In that file, the comments indicate that the code should only pick of certain mulicast address that begin withi 0xff02. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@80e0cb8 Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (aa270fc) PX4/NuttX-apps@36806ba...80e0cb8 80e0cb8 (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch 0abe341 (origin/master) Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository. 36d6348 apps/nslib: Try to eliminate and uninitialized variable warning. e853fb4 apps/wireless/wapi: Remove dependency on CONFIG_EXPERIMENTAL from Kconfig 133f239 Merged in raiden00/apps (pull request #141) e4a30d5 apps/Make.defs: Simplify last fix bf23277 apps/Make.defs: Fix an error introduced with recent chagne. MKKCONFIG may not be defined resulting in failure to create apps/Kconfig. 36e04b3 apps/examples/gps: Add GPS example using MINMEA lib
PX4BuildBot
pushed a commit
that referenced
this issue
Jun 24, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@2d5db5f Changes from PX4-NuttX/nuttx (PX4/NuttX@6377532) in current PX4/master (aa270fc) PX4/NuttX@6377532...2d5db5f 2d5db5f (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt cd9e51e [PX4: REJECTED] cstdint fix e1f66e0 [PX4: REJECTED] add math.h 601fd1e [PX4: WIP] Jenkinsfile 715d561 (origin/master) Trivial spelling corrections in comments; update some comments in a Kconfig file. 0786b5d net/tcp: Re-think CONFIG_NET_TCP_RWND_CONTROL TCP windowing controls. 433f29e net/: Rename CONFIG_TCP_REASSEMBLY to CONFIG_IPv4_REASSEMBLY. Add some fixes to get a clen compile with CONFIG_IPv4_REASSEMBLY enabled. There are several problems with the current implementation: It is untested (and depends on CONFIG_EXPERMIMENTAL). It uses some Ethernet specific definitions (and depends on CONFIG_NET_ETHERNET). There is only a single reassembly buffer. The last two issues prevent use of this feature in any context where IPv4 packets may be reassembled for multiple network devices concurrently). fe592d5 include/limits.h: Fix a signed-ness error introduced in a recent commit. Documentation/: Update acronym list. 34aeb08 Documentation/: Remove some old, early prototype NuttX logo images. 1acfac3 net/: More fixes to wrong comments from old change from the interrupt driven network to the work-queue driven network. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@80e0cb8 Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (aa270fc) PX4/NuttX-apps@36806ba...80e0cb8 80e0cb8 (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch 0abe341 (origin/master) Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository. 36d6348 apps/nslib: Try to eliminate and uninitialized variable warning. e853fb4 apps/wireless/wapi: Remove dependency on CONFIG_EXPERIMENTAL from Kconfig 133f239 Merged in raiden00/apps (pull request #141) e4a30d5 apps/Make.defs: Simplify last fix bf23277 apps/Make.defs: Fix an error introduced with recent chagne. MKKCONFIG may not be defined resulting in failure to create apps/Kconfig. 36e04b3 apps/examples/gps: Add GPS example using MINMEA lib
PX4BuildBot
pushed a commit
that referenced
this issue
Jun 25, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@be2461d Changes from PX4-NuttX/nuttx (PX4/NuttX@6377532) in current PX4/master (ddde968) PX4/NuttX@6377532...be2461d be2461d (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt a796420 [PX4: REJECTED] cstdint fix ef5d1c9 [PX4: REJECTED] add math.h 325069f [PX4: WIP] Jenkinsfile 2a29fe0 (origin/master) net/netdev: Fix.. Too many calls to net_unlock() c4de9f1 configs/stm32f3discovery: Board support did not conform to standard file layout and specifically did not include board_initialize. 872a11b Correct some errors found in build testing. 5a0cf3c net/netdev: Add an algorithm to prevent an interface index from being reused until all network interfaces have by assigned once. The prevents removable devices from being removed, unregistered and re-installed, re-registered and keeping the same interface index. c65e1aa Squashed commit of the following: 7c1394d Squashed commit of the following: Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@80e0cb8 Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (ddde968) PX4/NuttX-apps@36806ba...80e0cb8 80e0cb8 (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch 0abe341 (origin/master) Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository. 36d6348 apps/nslib: Try to eliminate and uninitialized variable warning. e853fb4 apps/wireless/wapi: Remove dependency on CONFIG_EXPERIMENTAL from Kconfig 133f239 Merged in raiden00/apps (pull request #141) e4a30d5 apps/Make.defs: Simplify last fix bf23277 apps/Make.defs: Fix an error introduced with recent chagne. MKKCONFIG may not be defined resulting in failure to create apps/Kconfig. 36e04b3 apps/examples/gps: Add GPS example using MINMEA lib
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 9, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@e89d3fa Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (33f7318) PX4/NuttX@d5c12b2...e89d3fa e89d3fa (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt e917ca8 [PX4: REJECTED] cstdint fix 0a4644b [PX4: REJECTED] add math.h c076e90 [PX4: WIP] Jenkinsfile 0aa30eb (origin/master) include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. 283b73e Fix lots of typos in C comments and Kconfig help text 1783d34 Eliminate some new warnings found in build testing. fa56b1b Merged in raiden00/nuttx_h7 (pull request #671) 0e1fc1a tools/mkexport.sh: Save the System.map file in the export package so that it can be used to extract addresses. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (33f7318) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 9, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@33b876f Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (33f7318) PX4/NuttX@d5c12b2...33b876f 33b876f (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 4d45868 [PX4: REJECTED] cstdint fix bd6fd53 [PX4: REJECTED] add math.h 3508a45 [PX4: WIP] Jenkinsfile 8271f72 (origin/master) Merged in raiden00/nuttx_h7 (pull request #672) 0aa30eb include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. 283b73e Fix lots of typos in C comments and Kconfig help text 1783d34 Eliminate some new warnings found in build testing. fa56b1b Merged in raiden00/nuttx_h7 (pull request #671) Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (33f7318) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 9, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@33b876f Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (33f7318) PX4/NuttX@d5c12b2...33b876f 33b876f (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 4d45868 [PX4: REJECTED] cstdint fix bd6fd53 [PX4: REJECTED] add math.h 3508a45 [PX4: WIP] Jenkinsfile 8271f72 (origin/master) Merged in raiden00/nuttx_h7 (pull request #672) 0aa30eb include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. 283b73e Fix lots of typos in C comments and Kconfig help text 1783d34 Eliminate some new warnings found in build testing. fa56b1b Merged in raiden00/nuttx_h7 (pull request #671) Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (33f7318) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 10, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@6de9126 Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (33f7318) PX4/NuttX@d5c12b2...6de9126 6de9126 (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt e992f27 [PX4: REJECTED] cstdint fix 4b7234d [PX4: REJECTED] add math.h 45626aa [PX4: WIP] Jenkinsfile 0eff3d5 (origin/master) Merged in jutava/nuttx (pull request #673) 8271f72 Merged in raiden00/nuttx_h7 (pull request #672) 0aa30eb include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. 283b73e Fix lots of typos in C comments and Kconfig help text 1783d34 Eliminate some new warnings found in build testing. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (33f7318) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 10, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@96c0d1a Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (9386ab6) PX4/NuttX@d5c12b2...96c0d1a 96c0d1a (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 92a4ea9 [PX4: REJECTED] cstdint fix 4ae3061 [PX4: REJECTED] add math.h b076567 [PX4: WIP] Jenkinsfile 8432164 (origin/master) arch/arm/src/stm32l4/chip/: Corrects some mistakes in pin definitions for the STM32L4 family. According to datasheet of STM32L496xx, STM32L475xx and STM32L443XX the AF2 of PE14 is TIM1_BKIN2 not TIM2_BKIN. 0eff3d5 Merged in jutava/nuttx (pull request #673) 8271f72 Merged in raiden00/nuttx_h7 (pull request #672) 0aa30eb include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. 283b73e Fix lots of typos in C comments and Kconfig help text Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (9386ab6) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 10, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@8076b95 Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (3f0a398) PX4/NuttX@d5c12b2...8076b95 8076b95 (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 01a921e [PX4: REJECTED] cstdint fix b073ee8 [PX4: REJECTED] add math.h 995a2b4 [PX4: WIP] Jenkinsfile 235d580 (origin/master) drivers/sensors/bh1749nuc.c, bh1790glc.c, and x224.c: From review of commit 0eff3d5, remove dependency on the CXD56_SCU, modify inclusions and some naming for compatibility with other sensor drivers. 8432164 arch/arm/src/stm32l4/chip/: Corrects some mistakes in pin definitions for the STM32L4 family. According to datasheet of STM32L496xx, STM32L475xx and STM32L443XX the AF2 of PE14 is TIM1_BKIN2 not TIM2_BKIN. 0eff3d5 Merged in jutava/nuttx (pull request #673) 8271f72 Merged in raiden00/nuttx_h7 (pull request #672) 0aa30eb include/nuttx/fs/hostfs.h: Update duplicated definitions in HOSTFS that must match NuttX values. 947c10e tools/mkexport.sh: Save the User.map file in the export package if available. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (3f0a398) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 11, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@96cef4d Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (8b71bb4) PX4/NuttX@d5c12b2...96cef4d 96cef4d (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt d9e74f8 [PX4: REJECTED] cstdint fix d6169e8 [PX4: REJECTED] add math.h 10be4d6 [PX4: WIP] Jenkinsfile b866599 (origin/master) Revert 0eff3d5: This removes the kx224, bh1749nuc and bh1790glc. These are very nicely written drivers, but they are based on some external sequencer logic which is not available to everyone. Hence, these are inapropriate to carry in the NuttX repository. 6368a0d Fix trivial coding standard issue 639d75c Merged in raiden00/nuttx_h7 (pull request #674) 235d580 drivers/sensors/bh1749nuc.c, bh1790glc.c, and x224.c: From review of commit 0eff3d5, remove dependency on the CXD56_SCU, modify inclusions and some naming for compatibility with other sensor drivers. 8432164 arch/arm/src/stm32l4/chip/: Corrects some mistakes in pin definitions for the STM32L4 family. According to datasheet of STM32L496xx, STM32L475xx and STM32L443XX the AF2 of PE14 is TIM1_BKIN2 not TIM2_BKIN. 0eff3d5 Merged in jutava/nuttx (pull request #673) Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (8b71bb4) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 12, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@8c9aa18 Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (21cc34b) PX4/NuttX@d5c12b2...8c9aa18 8c9aa18 (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 86e33ce [PX4: REJECTED] cstdint fix 4d17b00 [PX4: REJECTED] add math.h 1cab441 [PX4: WIP] Jenkinsfile 5626373 (origin/master) Merged in masayuki2009/nuttx.nuttx/lc832450_elf_test (pull request #675) b866599 Revert 0eff3d5: This removes the kx224, bh1749nuc and bh1790glc. These are very nicely written drivers, but they are based on some external sequencer logic which is not available to everyone. Hence, these are inapropriate to carry in the NuttX repository. 6368a0d Fix trivial coding standard issue 639d75c Merged in raiden00/nuttx_h7 (pull request #674) 235d580 drivers/sensors/bh1749nuc.c, bh1790glc.c, and x224.c: From review of commit 0eff3d5, remove dependency on the CXD56_SCU, modify inclusions and some naming for compatibility with other sensor drivers. 8432164 arch/arm/src/stm32l4/chip/: Corrects some mistakes in pin definitions for the STM32L4 family. According to datasheet of STM32L496xx, STM32L475xx and STM32L443XX the AF2 of PE14 is TIM1_BKIN2 not TIM2_BKIN. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@94741ff Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (21cc34b) PX4/NuttX-apps@36806ba...94741ff 94741ff (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch db9c56e (origin/master) apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command. abcb66c Remove apps/interpreters/micropthon. There are several reasons for this. (1) the current version 1.3.8 is very old and no one is supporting it. (2) the port only includes the core micropython logic and none of the Python libraries. As such it is useless in any real application. (3) There have recently been compile failures reported. It looks like this is due to changes in newlib based toolchains that now bring in incompatible newlib header files. See issue 104 at https://bitbucket.org/nuttx/nuttx/issues/104/build-micropython-138-error. With no one dedicated to the support of micropython, it can no longer be carried in the NuttX apps/ repository.
PX4BuildBot
pushed a commit
that referenced
this issue
Jul 12, 2018
NuttX: - https://github.com/PX4-NuttX/nuttx/tree/px4-master_auto_rebase - PX4/NuttX@561dbb1 Changes from PX4-NuttX/nuttx (PX4/NuttX@d5c12b2) in current PX4/master (e1a7472) PX4/NuttX@d5c12b2...561dbb1 561dbb1 (HEAD, origin/px4-master_auto_rebase) [PX4: WIP] Fix transmission status handling in the serial interrupt 6318f81 [PX4: REJECTED] cstdint fix 0c1cdd8 [PX4: REJECTED] add math.h 8c89f92 [PX4: WIP] Jenkinsfile 15f07b8 (origin/master) Upate the NuttX.html 'About NuttX' document; update a README file. 6e6583f Merged in david_s5/nuttx/master_singlewire (pull request #680) fbe5f56 Merged in david_s5/nuttx/master_singlewire (pull request #679) ece1bda Merged in raiden00/nuttx_h7 (pull request #678) c09efb2 arch/arm/src/stm32h7: Correct naming of global variables that violations the naming requirements of the coding standard. e569872 arch/arm/Kconfig: Since the basic STM32H7 port is working, let's remove the EXPERIMENTAL dependency. Apps: - https://github.com/PX4-NuttX/apps/tree/px4-master_auto_rebase - PX4/NuttX-apps@12277cf Changes from PX4-NuttX/apps (PX4/NuttX-apps@36806ba) in current PX4/master (e1a7472) PX4/NuttX-apps@36806ba...12277cf 12277cf (HEAD -> px4-master_auto_rebase, origin/px4-master_auto_rebase) [REJECTED] add-var-expansion-in-nsh-parse.patch 654ee7e (origin/master) apps/examples/elf, module, posix_spawn: Correct naming of global variables that violations the naming requirements of the coding standard. db9c56e apps/examples/powerled: Eliminate a warning about an uninitialized variable. e66470d Merged in raiden00/apps (pull request #143) db77b1e apps/examples/tcpblaster: Fix an error in time calculation. 19b8a52 apps/examples/tcpblaster/tcpblaster_server.c: Start time was not being initialized on the server side on the first pass through loop so the first output record had a crazy time. 749eccb Squashed commit of the following: 4d8b8fa apps/netutils/dhcpc: Activates BINDTODEVICE if available, and break up some long lines 0abe341 Merged in raiden00/apps (pull request #142) 3403b1b apps/nshlib/README.txt: Clarify arguments to the mkrd command.
TSC21
pushed a commit
to TSC21/Firmware
that referenced
this issue
Feb 15, 2019
EKF: Improved heading reset
dagar
pushed a commit
that referenced
this issue
Oct 16, 2024
Issue #141 Add Vagrantfile to automate dev environment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It turns out that the Matlab dir() command only works if the file has been touched / saved on a PC. If the file attributes are not set (as by default), it is not able to tell the file size.
Maybe this is not an issue in R2012b or later. We have to validate this.
The text was updated successfully, but these errors were encountered: