Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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 RTOS
Commits
67851849
Commit
67851849
authored
8 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Upate ChangeLog
parent
60b70f7d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+24
-0
24 additions, 0 deletions
ChangeLog
libc/misc/lib_xorshift128.c
+0
-8
0 additions, 8 deletions
libc/misc/lib_xorshift128.c
libxx/libxx_new.cxx
+1
-1
1 addition, 1 deletion
libxx/libxx_new.cxx
libxx/libxx_newa.cxx
+1
-1
1 addition, 1 deletion
libxx/libxx_newa.cxx
with
26 additions
and
10 deletions
ChangeLog
+
24
−
0
View file @
67851849
...
...
@@ -12569,3 +12569,27 @@
(2016-08-13).
* arch/arm/src/stm32: STM32F3 SPI: Cannot write always 16-bit value to
DR register because of how the F3 implements data packing (2016-08-13).
* Kinetis: Add support for I2C and RTC. From v01d (phreakuencies)
(2016-08-13).
* teensy 3.x i2c. From v01d (phreakuencies) (2016-08-13).
* SH1106 0.96 OLED module support (SSD1306 compatible) + I2C fixes.
From v01d (phreakuencies) (2016-08-13).
* Add support for SAMV7 DACC module. From iotr Mienkowski (2016-08-15).
* Add oneshot board initialization to stm32f103-minimum. From Alan
Carvalho de Assis (2016-08-15).
* drivers/audio/tone.c: Add Audio Tone Generator for NuttX. From Alan
Carvalho de Assis (2016-08-16).
* configs/stm32f103-minimum: Add board configuration to initialize Audio
Tone Generator. From Alan Carvalho de Assis (2016-08-16).
* STM32F411 and STM32F446 map i2c2_sda_4 to different alternate function
numbers. From Konstantin Berezenko (2016-08-17).
* STM32 DMA Fix: Change stm32 adc dma callback to send channel number
instead of index. From Konstantin Berezenko (2016-08-17).
* SAMA5: Add missing oneshot max_delay method (2016-08-18).
* configs/stm32bufferfly2: Add support for the Kamami stm32butterfly2
development board with optional ETH phy. From Michał Łyszczek
(2016-08-19).
* libc/misc: Separate XorShift128 PRNG from /dev/urandom and make it
generally available (2016-08-20).
* sched/sched_cpuload_oneshot: Use the oneshot timer with optional
entropy to measure cPU load if so configured (2016-08-20).
This diff is collapsed.
Click to expand it.
libc/misc/lib_xorshift128.c
+
0
−
8
View file @
67851849
...
...
@@ -49,14 +49,6 @@
#include
<nuttx/lib/xorshift128.h>
/****************************************************************************
* Private Types
****************************************************************************/
#ifndef CONFIG_CPULOAD_ONESHOT_ENTROPY
# define CONFIG_CPULOAD_ONESHOT_ENTROPY 0
#endif
/****************************************************************************
* Public Functions
****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
libxx/libxx_new.cxx
+
1
−
1
View file @
67851849
...
...
@@ -87,7 +87,7 @@ void *operator new(unsigned int nbytes)
void
*
alloc
=
lib_malloc
(
nbytes
);
#ifdef CONFIG_DEBUG_
FEATURES
#ifdef CONFIG_DEBUG_
ERROR
if
(
alloc
==
0
)
{
// Oh my.. we are required to return a valid pointer and
...
...
This diff is collapsed.
Click to expand it.
libxx/libxx_newa.cxx
+
1
−
1
View file @
67851849
...
...
@@ -87,7 +87,7 @@ void *operator new[](unsigned int nbytes)
void
*
alloc
=
lib_malloc
(
nbytes
);
#ifdef CONFIG_DEBUG_
FEATURES
#ifdef CONFIG_DEBUG_
ERROR
if
(
alloc
==
0
)
{
// Oh my.. we are required to return a valid pointer and
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment