Skip to content
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

Update mbed SDK sources to silence GCC warnings #24

Merged
merged 7 commits into from
Aug 13, 2013
Merged

Update mbed SDK sources to silence GCC warnings #24

merged 7 commits into from
Aug 13, 2013

Conversation

adamgreen
Copy link
Contributor

When building the GNU tools for ARM Embedded toolchain, I use the -Wall -Wextra flags. This was causing a few warnings to be emitted when building the mbed SDK sources. I have gone through the code and eliminated these warnings when building it for LPC176X, LPC11UXX, and KL25Z.

Most of the changes were related to two issues:

  • Enumerations (ie. ADCName, PinName, etc) would be compared to constants that had been cast to uint32_t instead of the correct enumeration type. These enumerations can be smaller than 32-bit when compiled by GCC so a warning was thrown. Were these cast to uint32_t to satisfy another compiler?
  • GCC throws warnings when there is a mismatch between the signs of the values used within a comparison. In most of these cases, I cast the signed integer to be unsigned. Someone more familiar with the code should probably check to see if this results in the expected behaviour.
  • Added .DS_Store to .gitignore so that it would ignore the files that OS X drops in every directory that I happen to open up in the Finder.

I have more information in the individual commit descriptions themselves.

Let me know if you want me to modify anything in these commits and I will resubmit with the requested modifications.

-Adam

Instruct git to ignore these OS X files.
These were done to silence GCC warnings and fix potential bugs where
they would never be equal when the enumeration wasn't a 32-bit type.

For example, common/pinmap_common.c used to contain this code:
    if (pin == (uint32_t)NC)
I switched it to:
    if (pin == (PinName)NC)

I wonder why this casting to uint32_t was done in the first place?
Maybe another supported compiler requires it?
The original code was:
    if(LPC_CAN1->IER | LPC_CAN2->IER != 0) {

This would actually be interpreted as:
    if(LPC_CAN1->IER | (LPC_CAN2->IER != 0)) {
I simplified it to:
    if(LPC_CAN1->IER | LPC_CAN2->IER) {
With the comparison removed, the GCC warning no longer fires since the
user's intent is no longer unclear.  However, the end result should be
the same.
Why do the wait APIs take a signed integer if they are going to be
compared to unsigned quantities?
This commit targets the LPC11U24 code, whereas a previous one
targetted similar issues in the LPC1768 mbed HAL code.

These changes were made to silence GCC warnings and fix potential bugs
where they would never be equal when the enumeration wasn't a 32-bit
type.

For example, pinmap.c used to contain this code:
    if (pin == (uint32_t)NC) return;
I switched it to:
    if (pin == (PinName)NC) return;

I wonder why this casting to uint32_t was done in the first place?
Maybe another supported compiler requires it?
This commit targets the KL25Z code, whereas previous ones targetted
similar issues in the LPC1768 and LPC11U24 mbed HAL code.

These changes were made to silence GCC warnings and fix potential bugs
where they would never be equal when the enumeration wasn't a 32-bit
type.

For example, pinmap.c used to contain this code:
    if (pin == (uint32_t)NC) return;
I switched it to:
    if (pin == (PinName)NC) return;

I wonder why this casting to uint32_t was done in the first place?
Maybe another supported compiler requires it?
i2c_frequency() compares a uint32_t ref variable to the int hz
function parameter passed in by the caller.  I forced this to be an
uint32_t comparison.

i2c_slave_write() declared i and count variables to be of type uint32_t
but used them as int type throughout the code (in comparisons and
returns) so I switched them to be of signed int type.

spi_frequency() contains a change similar to that made in
i2c_frequency().
bogdanm added a commit that referenced this pull request Aug 13, 2013
Update mbed SDK sources to silence GCC warnings
@bogdanm bogdanm merged commit 5ae0e91 into ARMmbed:master Aug 13, 2013
@adamgreen adamgreen deleted the gccWarnFixMbedSDK branch August 14, 2013 03:32
pbrier pushed a commit to pbrier/mbed that referenced this pull request Aug 14, 2013
Followingt test cases have been passed:
* PortOut (ARMmbed#24)
* PortOut PortIn (ARMmbed#9)
* PortInOut (ARMmbed#8)
pbrier pushed a commit to pbrier/mbed that referenced this pull request Aug 14, 2013
bridadan pushed a commit that referenced this pull request Jun 21, 2016
rename error.c to mbed_error.c. add toolchain.h to mbed.h exposing to…
pan- added a commit to pan-/mbed that referenced this pull request Jul 20, 2016
NRF5x LF clk config over mbed config system
SeppoTakalo pushed a commit that referenced this pull request Nov 9, 2016
Fixes coap-service for development head of mbed TLS
geky added a commit to geky/mbed that referenced this pull request Feb 23, 2018
b2124a5

b2124a5 Fixed multiple deploy steps in Travis
949015a Merge pull request ARMmbed#28 from geky/configurables
67daf9e Added cross-compile targets for testing
a3fd2d4 Added more configurable utils
a0a55fb Added conversion to/from little-endian on disk
4f08424 Added software implementations of bitwise instructions
59ce49f Merge pull request ARMmbed#26 from Sim4n6/master
2f8ae34 Added a git ignore file with .o .d blocks dir and lfs bin
e611cf5 Fix incorrect lookahead population before ack
a25743a Fixed some minor error code differences
6716b55 Fixed error check when truncating files to larger size
809ffde Merge pull request ARMmbed#24 from aldot/silence-shadow-warnings-1
dc513b1 Silenced more of aldot's warnings
aa50e03 Commentary typo fix
6d55755 tests: Silence warnings in template
029361e Silence shadow warnings
fd04ed4 Added autogenerated release notes from commits
3101bc9 Do not print command invocation if QUIET
d82e34c Merge pull request ARMmbed#21 from aldot/doc-tweaks
436707c doc: Editorial tweaks
3457252 doc: Spelling fixes
6d8e0e2 Moved -Werror flag to CI only
88f678f Fixed self-assign warning in tests
3ef4847 Added remove step in tests to force rebuild
f694b14 Merge pull request ARMmbed#16 from geky/versioning
5a38d00 Added deploy step in Travis to push new version as tags
035552a Add version info for software library and on-disk structures
997c2e5 Fixed incorrect reliance on errno in emubd
d88f0ac Added lfs_file_truncate
2ad435e Added files test to littlefs-fuse tests in Travis
1fb6a19 Reduced ctz traverse runtime by 2x
db88727 Added error code LFS_ERR_NOTEMPTY
c2fab8f Added asserts on geometry and updated config documentation
472ccc4 Fixed file truncation without writes
aea3d3d Fixed positive seek bounds checking
be22d34 Updated links to Mbed OS
425aa3c Fixed issue with immediate exhaustion and small unaligned storage

git-subtree-dir: features/filesystem/littlefs/littlefs
git-subtree-split: b2124a5
@geky geky mentioned this pull request Feb 23, 2018
6 tasks
pan- pushed a commit to pan-/mbed that referenced this pull request Mar 26, 2018
enable encryption for slave request added
geky added a commit to geky/mbed that referenced this pull request Jan 17, 2019
geky added a commit to geky/mbed that referenced this pull request Jan 29, 2019
6bc415bc2a Added scripts/prefix.py for automatically prefixing version numbers
8cca1b6a86 Fixed several small issues found during wider testing
5fb8fa9f06 Fixed issue with global state updates being lost during relocates
916b308558 Fixed excessive waste from overly large inline files
e1f9d2bc09 Added support for RAM-independent reading of inline files
51b2c7e Changed custom attribute descriptors to used arrays
66d7515 Modified global state format to work with new tag format
b989b4a Cleaned up tag encoding, now with clear chunk field
a548ce6 Switched to traversal-based compact logic
dc507a7 Changed required alignment of lookahead_size to 64 bits
5b26c68 Tweaked tag endianness to catch power-loss after <1 word is written
4a1b8ae Fixed issues found by more aggressive rename tests
c8a39c4 Merge remote-tracking branch 'origin/master' into v2-rebase-part2
ec4d8b6 Changed release script to generate drafts
c7894a6 Added a handful of links to related projects
1950758 Added 2GiB file size limit and EFBIG reporting
97d8d5e Fixed issue where a rename causes a split and pushes dir out of sync
795dd8c Fixed mkdir when inserting into a non-end block
97a7191 Fixed issue with creating files named "littlefs"
aeca766 Switched to strongly ordered directories
7af8b81 Changed lookahead configuration unit to bytes instead of bits
ad96fca Changed attr_max to be specific to custom attributes
f010d2a Fixed issue with reads ignoring the pcache
d7e4aba Edited tag structure to balance size vs id count
cafe6ab Fixed issue with splitting metadata-pairs in full filesystem
29b8810 Revisited xored-globals and related logic
cf87ba5 Combined superblock scan and fetch of xored-globals during mount
7bacf9b Removed xored-globals from the mdir struct
5eeeb9d Revisited some generic concepts, callbacks, and some reorganization
617dd87 Added deletion to custom attributes
c67a41a Added support for deleting attributes
6046d85 Added support for entry insertion
6db5202 Modified valid bit to provide an early check on all tags
a43f9b3 Modified lfs_dir_compact to avoid redundant erases during split
478dcdd Revisited caching rules to optimize bus transactions
4db96d4 Changed unwritable superblock to ENOSPC for consistency
a2532a3 Fixed inline files when inline_max == cache_size
d5e8005 Collapsed recursive deorphans into a single pass
21217d7 Dropped lfs_fs_getattr for the more implicit lfs_getattr("/")
38011f4 Fixed minor memory leak
126ef8b Added allocation randomization for dynamic wear-leveling
e4a0d58 Added building blocks for dynamic wear-leveling
20b669a Fixed issue with big-endian CTZ lists intertwined in commit logic
10f45ac Changed lfs_crc to match more common API
3b3981e Fixed testing issues introduced by expanding superblocks
d8f930e Modified CTZ struct type to make space for erased files in the future
7c70068 Added root entry and expanding superblocks
c3e36bd Standardized naming for internal functions
6d0a6fc Merge remote-tracking branch 'origin/master' into v2-alpha
3186e89 Changed littlefs-fuse target for testing purposes
dbcbe4e Changed name of upper-limits from blah_size to blah_max
213530c Changed LFS_ERR_CORRUPT to match EILSEQ instead of EBADE
a88230a Updated custom attribute documentation and tweaked nonexistant attributes
f369f80 Added tests for global state stealing
1941bbd Cleaned up config options
3cfa086 Introduced cache_size as alternative to hardware read/write sizes
97f35c3 Simplified the internal xored-globals implementation
35f68d2 Squished in-flight files/dirs into single list
bd1e0c4 Cleaned up several TODOs
01d837e Removed redundant lfs_scan in lfs_init
112fefc Added back big-endian support again on the new metadata structures
64df0a5 Added orphan bit to xored-globals
1a58ba7 Fixed ENOSPC issues with zero-granularity blocks
105907b Cleaned up config usage in file logic
df1b607 Removed the implicit lfs_t parameter to lfs_traverse
2257060 Fixed test bugs around handling corruption
3e246da Fixed the orphan test to handle logging metadata-pairs
15d1560 Added support for custom attributes leveraging the new metadata logging
3914cdf Pulled in fixes for additional path corner cases
392b2ac Refactored the updates of in-flight files/dirs
d9a24d0 Fixed move handling when caught in a relocate
5d24e65 Cleaned up commit logic and function organization
d3f3711 Cleaned up attributes and related logic
5fc53bd Changed internal functions to return tags over pointers
2b35c36 Renamed tag functions and macros
7c88bc9 Restructured get/traverse functions
e3b8678 Modified results from find-like functions to use tags
67d9f88 Combined get functions into one
7ad9700 Integrated findscan into fetch as a built in side effect
fe31f79 Consolidated find/parent scanning functions
fd121dc Dropped "has id" bit encoding in favor of invalid id
b7bd34f Restructured types to use a more flexible bit encoding
c1103ef Changed type info to be retrieved from name tag instead of struct tag
d7b0652 Removed old move logic, now passing move tests
2ff32d2 Fixed bug where globals were poisoning move commits
b46fcac Fixed issues with finding wrong ids after bad commits
cebf7aa Switched back to simple deorphan-step on directory remove
3ffcedb Restructured tags to better support xored-globals
e39f7e9 Introduced xored-globals logic to fix fundamental problem with moves
116c1e7 Adopted EISDIR as internal error for root path as argument
f458da4 Added the internal meta-directory structure
eaa9220 Renamed lfs_entry_t -> lfs_mattr_t
9278b17 Trimmed old names and functions from the code base
85a9638 Fixed issues discovered around testing moves
483d41c Passing all of the basic functionality tests
11a3c8d Continued progress with reintroducing testing on the new metadata logging
0bdaeb7 More testing progress, combined dir/commit traversal
0405ceb Cleaned up enough things to pass basic file testing
a3c67d9 Reorganized the internal operations to make more sense
0695862 Completed transition of files with journalling metadata
fe553e8 More progress integrating journaling
87f3e01 Progressed integration of journaling metadata pairs
8070abe Added rudimentary framework for journaling metadata pairs
61f454b Added tests for resizable entries and custom attributes
ea4ded4 Fixed big-endian support again
2a8277b Added test coverage for filesystems with no inline files
746b909 Added lfs_fs_size for finding a count of used blocks
93244a3 Added file-level and fs-level custom attribute APIs
636c0ed Modified commit regions to work better with custom attributes
6c754c8 Added support for atomically committing custom attributes
6ffc8d3 Added simple custom attributes
65ea6b3 Bumped versions, cleaned up some TODOs and missing comments
6774276 Expanded inline files up to a limit of 1023 bytes
6362afa Added disk-backed limits on the name/attrs/inline sizes
9555458 Added internal lfs_dir_set, an umbrella to dir append/update/remove operations
ad74825 Added internal lfs_dir_get to consolidate logic for reading dir entries
d0e0453 Changed how we write out superblock to use append
701e4fa Fixed a handful of bugs as result of testing
d8cadec Better implementation of inline files, now with overflowing
836e238 Shoehorned in hacky implementation of inline files
fb23044 Fixed big-endian support for entry structures
9273ac7 Added size field to entry structure
03b262b Separated out version of dir remove/append for non-entries
362b0bb Minor improvement to from-memory commits
e4a0cd9 Take advantage of empty space early in dir search
f30ab67 Traded enum-based DSL for full callback-based DSL
ca3d6a5 Made implicity tag updates explicit
692f0c5 Naive implementation of resizable entries
e3daee2 Changed dir append to mirror commit DSL
73d29f0 Adopted a tiny LISP-like DSL for some extra flexibility
4c35c86 Added different sources for commits, now with disk->disk moves
49698e4 Separated type/struct fields in dir entries
0bb1f7a Modified release script to create notes only on minor releases
447d89c Merge pull request ARMmbed#109 from OTAkeys/pr/fix-sign-compare
28d2d96 Fix -Wsign-compare error
cb62bf2 Fixed release script issue with fetching recent tags
646b1b5 Added -Wjump-misses-init and fixed uninitialized warnings
1b7a155 Merge pull request ARMmbed#106 from conkerkh/master
e5a6938 Fixed possible infinite loop in deorphan step
6ad544f If stats file doesn't exist lfs_emubd_create will fail.
3419284 Fixed issue with corruption due to different cache sizes
510cd13 Bumped minor version to v1.6
f5e0539 Fixed issue with release script non-standard version tags
0664480 Moved SPDX and license info into README
d66723c Merge pull request ARMmbed#81 from ARMmbed/simple-versioning
0234c77 Simplified release process based on feedback
84adead Merge pull request ARMmbed#80 from FreddieChopin/fix-memory-leaks
0422c55 Fix memory leaks in lfs_mount and lfs_format
11ad3a2 Merge pull request ARMmbed#76 from ARMmbed/fix-corrupt-read
16318d0 Merge pull request ARMmbed#58 from dpgeorge/file-open-no-malloc
961fab7 Added file config structure and lfs_file_opencfg
041e90a Added handling for corrupt as initial state of blocks
f94d233 Merge pull request ARMmbed#74 from FreddieChopin/cxx-guards
577d777 Add C++ guards to public headers
c72d252 Merge pull request ARMmbed#73 from FreddieChopin/fix-format-specifiers
7e67f93 Use PRIu32 and PRIx32 format specifiers to fix warnings
5a17fa4 Fixed script issue with bash expansion inside makefile parameter
eed1eec Fixed information leaks through reused caches
4a86370 Added quality of life improvements for main.c/test.c issues
ba4f171 Merge pull request ARMmbed#57 from dpgeorge/fix-warnings
51346b8 Fixed shadowed variable warnings
93a2e0b Merge pull request ARMmbed#62 from ARMmbed/license-bsd-3
6beff50 Changed license to BSD-3-Clause
c5e2b33 Added error when opening multiple files with a statically allocated buffer
015b86b Fixed issue with trailing dots in file paths
9637b96 Fixed lookahead overflow and removed unbounded lookahead pointers
89a7630 Fixed issue with lookahead trusting old lookahead blocks
43eac30 Renamed test_parallel tests to test_interespersed
dbc3cb1 Fixed Travis rate-limit issue with Github requests
93ece2e Removed outdated note about moves and powerloss
d9c076d Removed the uninitialized read for invalid superblocks
58f3bb1 Merge pull request ARMmbed#37 from jrast/patch-1
f72f6d6 Removed out of date note about endianness
5c4ee21 Added a note about the callback functions
1552246 Fixed Travis issue with deploy stage in PRs
9ee112a Fixed issue updating dir struct when extended dir chain
d9c3637 Fixed handling of root as target for create operations
1476181 Added LFS_CONFIG for user provided configuration of the utils
b2124a5 Fixed multiple deploy steps in Travis
949015a Merge pull request ARMmbed#28 from geky/configurables
67daf9e Added cross-compile targets for testing
a3fd2d4 Added more configurable utils
a0a55fb Added conversion to/from little-endian on disk
4f08424 Added software implementations of bitwise instructions
59ce49f Merge pull request ARMmbed#26 from Sim4n6/master
2f8ae34 Added a git ignore file with .o .d blocks dir and lfs bin
e611cf5 Fix incorrect lookahead population before ack
a25743a Fixed some minor error code differences
6716b55 Fixed error check when truncating files to larger size
809ffde Merge pull request ARMmbed#24 from aldot/silence-shadow-warnings-1
dc513b1 Silenced more of aldot's warnings
aa50e03 Commentary typo fix
6d55755 tests: Silence warnings in template
029361e Silence shadow warnings
fd04ed4 Added autogenerated release notes from commits
3101bc9 Do not print command invocation if QUIET
d82e34c Merge pull request ARMmbed#21 from aldot/doc-tweaks
436707c doc: Editorial tweaks
3457252 doc: Spelling fixes
6d8e0e2 Moved -Werror flag to CI only
88f678f Fixed self-assign warning in tests
3ef4847 Added remove step in tests to force rebuild
f694b14 Merge pull request ARMmbed#16 from geky/versioning
5a38d00 Added deploy step in Travis to push new version as tags
035552a Add version info for software library and on-disk structures
997c2e5 Fixed incorrect reliance on errno in emubd
d88f0ac Added lfs_file_truncate
2ad435e Added files test to littlefs-fuse tests in Travis
1fb6a19 Reduced ctz traverse runtime by 2x
db88727 Added error code LFS_ERR_NOTEMPTY
c2fab8f Added asserts on geometry and updated config documentation
472ccc4 Fixed file truncation without writes
aea3d3d Fixed positive seek bounds checking
be22d34 Updated links to Mbed OS
425aa3c Fixed issue with immediate exhaustion and small unaligned storage
5ee20e8 Fixed pipefail issue that was preventing CI from reporting errors
bf78b09 Added directory list for synchronizing in flight directories
e169d06 Removed vestigial function declaration
996cd8a Revisited documentation
78c79ec Added QUIET flag to tests so CI is readable
f9f4f5c Fixed standard name mismatch LFS_ERR_EXISTS -> LFS_ERR_EXIST
843e3c6 Added sticky-bit for preventing file syncs after write errors
2612e1b Modified lfs_ctz_extend to be a little bit safer
6664723 Fixed issue with committing directories to bad-blocks that are stuck
3f31c8c Fixed corner case with immediate exhaustion and lookahead==block_count
f4aeb83 Fixed issue with aggressively rounding down lookahead configuration
db51a39 Removed stray newline in LFS_ERROR for version
2ab150c Removed toolchain specific warnings
0825d34 Adopted alternative implementation for lfs_ctz_index
46e22b2 Adopted lfs_ctz_index implementation using popcount
4fdca15 Slight name change with ctz skip-list functions
454b588 Updated SPEC.md and DESIGN.md based on recent changes
f3578e3 Removed clamping to block size in ctz linked-list
83d4c61 Updated copyright
539409e Refactored deduplicate/deorphan step to single deorphan step
2936514 Added atomic move using dirty tag in entry type
ac9766e Added self-hosting fuzz test using littlefs-fuse
9db1a86 Added specification document
9843402 Fixed incorrect return value from lfs_file_seek
273cb7c Fixed problem with lookaheads larger than block device
d9367e0 Fixed collection of multiblock directories
a83b2fe Added checks for out-of-bound seeks
a8fa5e6 Fixed some corner cases with paths
26dd49a Fixed issue with negative modulo with unaligned lookaheads
0982020 Fixed issue with cold-write after seek to block boundary
c2283a2 Extended entry tag to support attributes
8795f0e Added build size output to CI
47db7a7 Added sanity check for compiling example
476915f Removed a few "what"s from the documentation
663e953 Adopted the Apache 2.0 license
51c8b02 Updated .travis.yml to test multiple cache sizes
8a9b9ba Modified entry head to include name length
931442a Adopted redundant cache read in lfs_file_relocate
0e1022a Fixed missing erase during file relocation
a1138a4 Fixed dirty rcache during directory commit
1166416 Fixed relocation bug when a file is closed with lingering caches
fe28ea0 Added internal check of data written to disk
1eeb2a6 Shrinked on-disk directory program size
0d66f9f Cleaned up design documentation
d2bf2bb Added documentation over the underlying design
69294ac Added better documentation
fd1da60 Added support for handling corrupted blocks
b35d761 Removed words variable from lfs struct
63b52c9 Added proper handling for removing open files
8621b61 Adopted 0xffffffff as null pointer
4808e9a Added caching with managed caches at the file level
6869b14 Fixed memory leak for lookahead buffer
a30142e Fixed allocation bugs near the end of storage
210b487 Added file list for tracking in flight allocations
b55719b Adopted more conventional buffer parameter ordering
0406442 Fixed non-standard behaviour of rdwr streams
287b548 Standardized error values
5790ec2 Structured some of the bulk of the codebase
ba8afb9 Added support for full seek operations
a1d8a76 Added correct handling of file syncing around overwrites
a4e9132 Removed a layer of indirection for index-list lookup
aa87265 Cleaned up block allocator
7050922 Added optional block-level caching
789286a Simplified config
3b9d663 Restructured directory code
bd817ab Added support for renaming dirs/files
3b1bcbe Removed .. and . entries
1f13006 Added dir navigation without needing parent entries
c25c893 Moved to brute-force deorphan without parent pointers
96a4258 Added the lfs_stat function
a3734ee Added proper handling of orphans
8a67452 Added full dir list and rudimentary block allocator
ca01b72 Added path iteration and chained directories
390ca33 Added travis config
8a95fdf Added file read/write tests and some framework updates
a711675 Added dir tests, test fixes, config
afa4ad8 Added a rudimentary test framework
84a5764 Restructured the major interfaces of the filesystem
f566846 Revised free-list structure to adopt a lazy scanning allocator of sorts
ed674e8 Added support for the basic file operation
53674cb Added limited support for directories
106b06a Added better handling for metadata pairs
1d36fc6 Added initial superblock definition
c28a280 Adopted ctz skip-list structure earlier than expected
160299d Initial commit of progress, minimal formatting niave free list
02156cb Initial commit of block device interface and emulated block device
b113bba Created little config parser
REVERT: 8b609ec Split out littlefs mbed-os implementation from 'ca7b5e8eed574a7295280d9276de3f9bb7cb7f05'

git-subtree-dir: littlefs
git-subtree-split: 6bc415bc2aae647f09f3fae6c9382bf237a480fb
evedon added a commit to evedon/mbed-os that referenced this pull request Jul 5, 2019
This PR adds:
* Support for hexadecimal printing in lower case
* Fixes to floating point printing (leading zeros in decimal part)
hugueskamba pushed a commit to hugueskamba/mbed-os that referenced this pull request Jul 9, 2019
This PR adds:
* Support for hexadecimal printing in lower case
* Fixes to floating point printing (leading zeros in decimal part)
hugueskamba pushed a commit to hugueskamba/mbed-os that referenced this pull request Jul 9, 2019
This PR adds:
* Support for hexadecimal printing in lower case
* Fixes to floating point printing (leading zeros in decimal part)
linlingao added a commit to linlingao/mbed-os that referenced this pull request Jul 12, 2019
evedon added a commit to evedon/mbed-os that referenced this pull request Jul 15, 2019
This PR adds:
* Support for hexadecimal printing in lower case
* Fixes to floating point printing (leading zeros in decimal part)
LMESTM pushed a commit to LMESTM/mbed that referenced this pull request Jan 8, 2020
pan- pushed a commit to pan-/mbed that referenced this pull request May 29, 2020
Remove Eddystone example dependencies on nRF51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants