summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* archive repositoryHEADmasterRobert Dower2023-01-061-0/+9
|
* Merge pull request #86 from again4you/fix_warning_v2Kevron Rees2017-01-0324-62/+53
|\ | | | | fixed all warning messages when enabling -Wall option (v2)
| * fixed the warning message when enabling -Wall optionSangjung Woo2016-12-2324-62/+53
|/ | | | | | | | | | | | | | | | | | | | | This patch fixed the below warning messages. - warning: comparison between signed and unsigned integer expressions - warning: no return statement in function returning non-void - warning: statement has no effect - warning: unused variable - warning: when initialized here [-Wreorder] - warning: control reaches end of non-void function [-Wreturn-type] - warning: ‘VehicleProperty::ButtonEvent’ is deprecated: Deprecated in 0.14. Use ButtonEventW3C [-Wdeprecated-declarations] - warning: ignoring return value of 'int dup(int)', declared with attribute warn_unused_result [-Wunused-result] - warning: suggest parentheses around '&&' within '||' [-Wparentheses] - warning: 'connection' may be used uninitialized in this function [-Wmaybe-uninitialized] - warning: suggest parentheses around assignment used as truth value - warning: dereferencing type-punned pointer will break strict-aliasing rules Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* AmbSignalMapper: clean up the warning messageSangjung Woo2016-11-032-1/+3
| | | | | | | | | | | | Some generated functions by AmbSignalMapper do not return the result even it is not a void function. Because of this reason, below error occurs when build it. This patch fixes this bug. --------------------------------------------------------------------- warning: control reaches end of non-void function [-Wreturn-type] --------------------------------------------------------------------- Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Merge pull request #83 from again4you/bugfix/AmbSignalMapperKevron Rees2016-10-271-1/+1
|\ | | | | AmbSignalMapper: bugfix about configuration
| * AmbSignalMapper: bugfix about configurationSangjung Woo2016-10-261-1/+1
|/ | | | | | | | | If 'announcementCount' variable is lower than 1, then 'announcementIntervalTimer' variable is updated to 1. That is definitely a bug so this patch fixes that error by updating 'announcementCount' instead of 'announcementIntervalTimer'. Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Merge pull request #81 from again4you/fix_bug_v2Kevron Rees2016-10-074-10/+9
|\ | | | | Fix #78, #79, #82 issues (v2)
| * AmbSignalMapper: Use GNU standard macro instead of fixed pathSangjung Woo2016-10-071-5/+4
| | | | | | | | | | | | | | | | | | Even though generated codes by AmbSignalMapper are built as 64bits environment, shared library is installed in fixed directory (i.e. lib/automotive-message-broker) since there is an error in CMakeLists.txt. This patch fixes this bug and use pre-defined GNU standard macro for more adaptable. Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
| * cmake: fix the error in pkgconfig fileSangjung Woo2016-10-072-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Generated pkgconfig files(i.e. *.pc) have the wrong path as below. Because of this reason, include files are not found when building AMB plugin module. --------------------------------------------- $ cat /usr/local/lib/pkgconfig/amb-plugins-common.pc prefix=/usr/local exec_prefix=${prefix} libdir=lib includedir=include/amb --------------------------------------------- This patch fixes this problem by adding prefix macro in front of libdir and includedir. Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
| * ambctl: fix error when running 'ambctl listen'Sangjung Woo2016-10-071-1/+1
|/ | | | | | | | | | | | | | | | When running 'ambctl listen' command, below error occurs. ----------------------------------------------------------- $ ambctl listen VehicleSpeed File "/usr/local/bin/ambctl", line 567, in <module> processCommand(args.command, args.commandArgs, False) File "/usr/local/bin/ambctl", line 218, in processCommand traceback.print_stack() ----------------------------------------------------------- This is mainly because gobject is replaced with gi.repository module so it should be GObject not gobject. Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Merge pull request #77 from again4you/fix_json2ambKevron Rees2016-09-221-3/+1
|\ | | | | Fix compile time error when building generated code by json2amb
| * AmbSignalMapper: Fix compile time errorSangjung Woo2016-09-231-3/+1
|/ | | | | | | | | | | | | | | | Generated c++ codes by json2amb use 'auto' keyword. However, Generated CMakeLists.txt has '-std=gnu++0x' option. Because of this reason, below errors occur. --------------------------------------- error: use of ‘auto’ in lambda parameter declaration only available with -std=c++14 or -std=gnu++14 --------------------------------------- This patch fixes the bug by using '-std=c++14' instead of '-std=gnu++0x' Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Merge pull request #75 from again4you/fix_json2ambKevron Rees2016-09-221-0/+1
|\ | | | | Fix Undefined subroutine error in json2amb script
| * AmbSignalMapper: Fix Undefined subroutine error in json2ambSangjung Woo2016-09-221-0/+1
|/ | | | | | | | | | | | | | | | | In order to generate plugin from JSON file, json2amb script is used. However, below error occurs when executing json2amb script. ------------------------------------------------------------------------ $ json2amb -d SamsungCAN.json Undefined subroutine &main::readFileContent called at /usr/local/bin/json2amb line 111. ------------------------------------------------------------------------ This is mainly because readFileContent() subroutine is located in Intel::IviPoc::AmbCommon but it is not loaded in json2amb script. This patch fixes the error. Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* Merge pull request #73 from tripzero/masterKevron Rees2016-09-093-130/+142
|\ | | | | Fix gpsnmea plugin snippit and fidl
| * [amb.fidl] fix Ignition type and some whitespace issuesKevron Rees2016-08-161-130/+130
| |
| * [gpsnmea] add missing config segmentKevron Rees2016-07-212-0/+12
| |
* | Merge pull request #71 from again4you/masterKevron Rees2016-08-161-0/+3
|\ \ | | | | | | Add unpackaged files into rpm package
| * | [PACKAGING] add unpackaged files into rpm packageSangjung Woo2016-08-161-0/+3
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some files are installed but not packaged into any rpm packages. Because of this reason, below error occurs when building rpm packages. -------------------------------------------------- [ 158s] error: Installed (but unpackaged) file(s) found: [ 158s] /etc/init.d/ambd [ 158s] /usr/lib/debug/usr/lib/libamb-json-protocol.so.debug [ 158s] /usr/lib/libamb-json-protocol.so [ 158s] [ 158s] [ 158s] RPM build errors: [ 158s] Installed (but unpackaged) file(s) found: [ 158s] /etc/init.d/ambd [ 158s] /usr/lib/debug/usr/lib/libamb-json-protocol.so.debug [ 158s] /usr/lib/libamb-json-protocol.so -------------------------------------------------- This patch fixes the error above by adding these files into proper packages. Change-Id: I9a7de2bc2b90dfd0b955f459c2e961fe93476470 Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
* | Merge pull request #69 from fredcadete/masterKevron Rees2016-08-042-3/+3
|\ \ | | | | | | cmake: assorted install path fixes
| * | cmake: assorted install path fixesFrederico Cadete2016-06-212-3/+3
|/ / | | | | | | | | | | | | | | | | - Avoid double prefix in PLUGIN_INSTALL_PATH - Avoid leading "//" in PLUGIN_SEGMENT_INSTALL_PATH - cmake will think it's a network directory - Use installation directory variable in amb-qt installation Signed-off-by: Frederico Cadete <frederico.cadete@awtce.be>
* | Merge pull request #68 from tripzero/masterKevron Rees2016-05-192-1/+16
|\ \ | |/ | | timestamp: fix for bcm_timeval on older kernels
| * amb: version bump 0.14.803Kevron Rees2016-04-191-1/+1
| |
| * timestamp: fix for bcm_timeval on older kernelsKevron Rees2016-04-192-0/+15
|/
* Merge pull request #67 from tripzero/tripKevron Rees2016-04-084-3/+11
|\ | | | | fix can error. fix cmake plugin_install_dir
| * fix can error. fix cmake plugin_install_dirKevron Rees2016-04-034-3/+11
| | | | | | | | | | can: add bcm_timestamp conversion. timeval to bcm_timeval conversion doesn't work with new gcc cmake: Fix install path for plugins. Was not being populated properly
* | Merge pull request #65 from mvickjlr/climate_control_doc_fixKevron Rees2015-12-091-3/+3
|\ \ | | | | | | docs: Correct errors and inconsistencies in climate control section
| * | docs: Correct errors and inconsistencies in climate control sectionMatthew Vick2015-12-031-3/+3
|/ / | | | | | | | | | | | | Resolve an error in the climate control documentation related to the fan speed level and resolve a few trivial inconsistencies nearby. Signed-off-by: Matthew Vick <mvick@jaguarlandrover.com>
* | Merge pull request #63 from tripzero/tripKevron Rees2015-11-171-11/+11
|\ \ | |/ | | cmake: explicitly set std to c++14
| * cmake: no need to prepend prefixKevron Rees2015-11-111-3/+3
| |
| * cmake: use gnuinstalldirs module to encode install pathsKevron Rees2015-10-301-10/+10
| |
| * cmake: explicitly set std to c++14Kevron Rees2015-10-301-1/+1
|/ | | | Signed-off-by: Kevron Rees <tripzero.kev@gmail.com>
* Merge pull request #58 from tripzero/masterKevron Rees2015-06-0814-143/+207
|\ | | | | | | | | Version bump and Value Quality Merging as-is for now
| * [ambctl] use gi.repositoryKevron Rees2015-05-061-5/+4
| |
| * [dbus] mark deprecated old style for custom dbus property naming.Kevron Rees2015-04-151-0/+1
| |
| * [dbus] add overload 'value' for custom dbus property typesKevron Rees2015-04-154-11/+12
| |
| * [libamb] - added value quality, removed deprecated GetFoo call, made ↵Kevron Rees2015-04-158-126/+189
| | | | | | | | updateFrequency a separate property
| * [ambctl] removed build realic that should never have been addedKevron Rees2015-04-151-2/+2
| |
| * Version bump 0.14.802Kevron Rees2015-04-151-1/+1
| |
* | Merge pull request #60 from OlivierDelbeke/plugin_parsing_masterKevron Rees2015-04-291-1/+2
|\ \ | |/ |/| Bugfix: parsing of plugins.d failed with some file-systems
| * Bugfix: parsing of plugins.d failed with some file-systemsOlivier Delbeke2015-04-231-1/+2
|/
* Merge pull request #57 from OlivierDelbeke/chrony_for_masterKevron Rees2015-04-1510-3/+202
|\ | | | | Chrony for master - This has already been reviewed on 0.14. Merging
| * Added missing plugin fragment for chronyOlivier Delbeke2015-04-152-0/+8
| |
| * Chrony plugin code simplificationOlivier Delbeke2015-04-152-7/+0
| |
| * Using AmbPlugin instead of AbstractSink for the chrony pluginOlivier Delbeke2015-04-152-14/+20
| |
| * Added chrony sink pluginOlivier Delbeke2015-04-158-1/+193
| |
| * Changed GpsTime format from local time to UTCOlivier Delbeke2015-04-151-1/+1
| |
| * Bugfix: wrong date conversion in gpsnmea pluginOlivier Delbeke2015-04-151-1/+1
|/
* Merge pull request #48 from CogentEmbedded/masterKevron Rees2015-04-0648-432/+2005
|\ | | | | Fixes and improvements in CAN support
| * Fixed tabbing issuesPetr Nechaev2015-04-035-675/+674
| |