You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
(2) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
From: Andrew S. <and...@gm...> - 2006-12-01 20:22:11
|
Hello, I've already asked for that NIST guys. They say you need to reverse engineer the Java code and then will get the model. I haven't tried it yet though. Regards, -- Andrew Stepanenko, Ph.D. student, Dept. of Information Computing Systems and Control, Web: http://www.tanet.edu.te.ua/icsc/ Software engineer, Ukrainian-Dutch Faculty of Economics and Management Ternopil State Economic University Shevchenko Street 9, Office 24-25 Ternopil, 46000 UKRAINE Tel: +38 (0352) 43 52 41 fax: +38 (0352) 43 52 45 Web: http://unf.tane.edu.ua On 12/1/06, Arun Shetty <wor...@gm...> wrote: > Hello, > > I recently dowloaded the Dot5 Object Model in Java. Since there is no > readme or help file I am little confused about how to go about and use it. I > have downloaded Rhapsody but I am not able to import the java and class > files into it so that I can view the object model. There is no Rhapsody > project file (.rpy) file included unlike the one provided in dot 1 object > model. > > Any suggestions would be deeply appreciated. > > Thank you, > Aroon > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > Open1451-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/open1451-devel > > > |
From: Arun S. <wor...@gm...> - 2006-12-01 17:12:53
|
Hello, I recently dowloaded the Dot5 Object Model in Java. Since there is no readme or help file I am little confused about how to go about and use it. I have downloaded Rhapsody but I am not able to import the java and class files into it so that I can view the object model. There is no Rhapsody project file (.rpy) file included unlike the one provided in dot 1 object model. Any suggestions would be deeply appreciated. Thank you, Aroon |
From: Andrew S. <and...@gm...> - 2006-08-15 10:34:05
|
Hello, Chengyi, looks like g++ cannot find main() definition. In the folder tempNCAP there is a file tempMain.cpp. Try to compile it separately and then add to the list of object files for linking. Or add it to Makefile. I remember I was able to compile tempNCAP manually from the command line, and linked object files into executable successfully. Regards, Andrew Stepanenko. On 8/15/06, chengyi li <lcy...@gm...> wrote: > Hello: > I downloaded the open1451-gaithersburg-1.00 recently, and built it in my > Linux system, and having some difficulty in the compile process, the error > is : > make[2]: Leaving directory `/opt/open1451-gaithersburg-1.00/ieee1451' > make[2]: Entering directory `/opt/open1451-gaithersburg-1.00/NCAPS' > make[3]: Entering directory > `/opt/open1451-gaithersburg-1.00/NCAPS/tempncap' > GNUmakefile: /opt/open1451-gaithersburg-1.00/NCAPS/tempncap/GNUmakefile > MAKEFLAGS=w -- OPERATION=all LDOPTIONS=-g CCOPTIONS=-g INSTALL= > OPERATION=all DIRS=ieee1451 NCAPS MKOPTS=CCOPTIONS=-g LDOPTIONS=-g X=x > CCOPTIONS=-g LDOPTIONS=-g OPERATION=all > g++ -fvisibility=hidden -fvisibility-inlines-hidden -W -Wall > -Wpointer-arith -O3 -g -pipe -DUSE_ACE_TASKS -Wno-unused -I. > -D_REENTRANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -I../../ieee1451 -I/opt/ACE > -DACE_HAS_EXCEPTIONS -D__ACE_INLINE__ -c -o .obj/tempNCAP.o tempNCAP.cpp > In file included from > /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../../include/c++/4.0.0/backward/iostream.h:31, > from ../../ieee1451/root.h:19, > from ../../ieee1451/entity.h:23, > from ../../ieee1451/block.h:18, > from ../../ieee1451/ncap.h:20, > from 1451.h:17, > from tempNCAP.h:17, > from tempNCAP.cpp:14: > /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../../include/c++/4.0.0/backward/backward_warning.h:32:2: > warning: #warning This file includes at least one deprecated or antiquated > header. Please consider using one of the 32 headers found in section > 17.4.1.2 of the C++ standard. Examples include substituting the <X> header > for the <X.h> header for C++ includes, or <iostream> instead of the > deprecated header <iostream.h>. To disable this warning use -Wno-deprecated. > g++ -fvisibility=hidden -fvisibility-inlines-hidden -W -Wall > -Wpointer-arith -O3 -g -pipe -DUSE_ACE_TASKS -Wno-unused -I. > -D_REENTRANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -I../../ieee1451 -I/opt/ACE > -DACE_HAS_EXCEPTIONS -D__ACE_INLINE__ -L../../ieee1451 -Wl,-E > -L/opt/ACE/ace -L./ -o tempNCAP .obj/tempNCAP.o -l1451 -lACE -ldl -lpthread > -lrt > /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../crt1.o(.text+0x18): > In function `_start': > : undefined reference to `main' > collect2: ld return 1 > make[3]: *** [tempNCAP] error 1 > make[3]: Leaving directory `/opt/open1451-gaithersburg-1.00/NCAPS/tempncap' > make[2]: *** [all] eror 1 > make[2]: Leaving directory `/opt/open1451-gaithersburg-1.00/NCAPS' > make[1]: *** [all] error 1 > make[1]: Leaving directory `/opt/open1451-gaithersburg-1.00' > make: *** [all] error 2 > > > In my system the kernel number is Fedora core 4,the gcc version is 4.0.0, > and the gcc configure is: > ../configure --prefix=/usr --mandir=/usr/share/man > --infodir=/usr/share/info --enable-shared --enable-threads=posix > --enable-checking=release --with-system-zlib --enable-__cxa_atexit > --disable-libunwind-exceptions --enable-libgcj-multifile > --enable-languages=c,c++,objc,java,f95,ada > --enable-java-awt=gtk > --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre > --host=i386-redhat-linux > > Does anybody have an idea of what might be causing this error? Can you give > some a method? > > Thank for any help! > chengyi li > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > Open1451-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/open1451-devel > > > |
From: chengyi l. <lcy...@gm...> - 2006-08-15 09:18:19
|
Hello: I downloaded the open1451-gaithersburg-1.00 recently, and built it in my Linux system, and having some difficulty in the compile process, the error is : make[2]: Leaving directory `/opt/open1451-gaithersburg-1.00/ieee1451' make[2]: Entering directory `/opt/open1451-gaithersburg-1.00/NCAPS' make[3]: Entering directory `/opt/open1451-gaithersburg-1.00/NCAPS/tempncap' GNUmakefile: /opt/open1451-gaithersburg-1.00/NCAPS/tempncap/GNUmakefile MAKEFLAGS=w -- OPERATION=all LDOPTIONS=-g CCOPTIONS=-g INSTALL= OPERATION=all DIRS=ieee1451 NCAPS MKOPTS=CCOPTIONS=-g LDOPTIONS=-g X=x CCOPTIONS=-g LDOPTIONS=-g OPERATION=all g++ -fvisibility=hidden -fvisibility-inlines-hidden -W -Wall -Wpointer-arith -O3 -g -pipe -DUSE_ACE_TASKS -Wno-unused -I. -D_REENTRANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -I../../ieee1451 -I/opt/ACE -DACE_HAS_EXCEPTIONS -D__ACE_INLINE__ -c -o .obj/tempNCAP.o tempNCAP.cpp In file included from /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../../include/c++/4.0.0/backward/iostream.h:31, from ../../ieee1451/root.h:19, from ../../ieee1451/entity.h:23, from ../../ieee1451/block.h:18, from ../../ieee1451/ncap.h:20, from 1451.h:17, from tempNCAP.h:17, from tempNCAP.cpp:14: /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../../include/c++/4.0.0/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated. g++ -fvisibility=hidden -fvisibility-inlines-hidden -W -Wall -Wpointer-arith -O3 -g -pipe -DUSE_ACE_TASKS -Wno-unused -I. -D_REENTRANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -I../../ieee1451 -I/opt/ACE -DACE_HAS_EXCEPTIONS -D__ACE_INLINE__ -L../../ieee1451 -Wl,-E -L/opt/ACE/ace -L./ -o tempNCAP .obj/tempNCAP.o -l1451 -lACE -ldl -lpthread -lrt /usr/lib/gcc/i386-redhat-linux/4.0.0/../../../crt1.o(.text+0x18): In function `_start': : undefined reference to `main' collect2: ld return 1 make[3]: *** [tempNCAP] error 1 make[3]: Leaving directory `/opt/open1451-gaithersburg-1.00/NCAPS/tempncap' make[2]: *** [all] eror 1 make[2]: Leaving directory `/opt/open1451-gaithersburg-1.00/NCAPS' make[1]: *** [all] error 1 make[1]: Leaving directory `/opt/open1451-gaithersburg-1.00' make: *** [all] error 2 In my system the kernel number is Fedora core 4,the gcc version is 4.0.0, and the gcc configure is: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,java,f95,ada --enable-java-awt=gtk --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --host=i386-redhat-linux Does anybody have an idea of what might be causing this error? Can you give some a method? Thank for any help! chengyi li |
From: Andrew S. <and...@gm...> - 2006-08-13 20:37:22
|
Hello Chengyi, sorry for a late reply. First of all, I again advice you to post your questions to ope...@li... mailing list because there are other people familiar with 1451 and not just me, so there is a higher chance to get your question answered. Now to your questions.. At the time the paper was being prepared I used ACE 5.4.4. But I didn't do anything special to shrink ACE. On of ideas in our papers was that ACE was too large to port it to embeded 1451 system (in our case even 1.8Mb was to large), so if we got it to be 7.8Mb we even would have more arguments to prove that. Did you check any configure time options before building ACE? Maybe you've included the whole functionality. AFAIK, they have there some event framework which may take space. Check some other options. Concerning lib1451.so, as far as I remember we used gaithersburg tree and not seattle. In gaithersburg project there is a demo with Temperature NCAP emulation which we got running after fixing some errors. So, pls, refer to it. Unfortunately, I cannot provide you with neither libACE.so not lib1451.a because AFAIK I deleted their sources from the server where I compiled them and the process of building ACE is a bit time consuming. It would be nice to know where are you from and what is your university and your project probably? Did you looked at 1451.0? Some people say it can be enough in most cases. Regards, Andrew Stepanenko On 8/2/06, chengyi li <lcy...@gm...> wrote: > > > 2006/7/27, Andrew Stepanenko <and...@gm...>: > > Hello, > > > > I'm one of the coauthor of the mentioned paper and will try to answer > > you question. > > People who developed 1451.1 also provided a UML model for 1451.1 and > > it is available at open1451.sourceforge.net. To open the model you > > need to have Rhapsody IDE made by ilogix.com. At open1451 there is > > actually a neutral 1451.1 model and in the samples section (branches > > gaithersburg and seatle) there is generated source code for 1451.1 ACE > > implementation. If you take this ACE implementation and compile at > > your computer you can get lib1451.so dynamic library or lib1451.a > > static library. The estimation of their size is in the paper. > > > > Feel free to ask other question but you'd better post the to Open1451 > > Development list available at open1451.sf.net. > > > > Regards, > > -- > > Andrew Stepanenko, > > Ph.D. student, > > Dept. of Information Computing Systems and Control, > > Web: http://www.tanet.edu.te.ua/icsc/ > > Software engineer, > > Ukrainian-Dutch Faculty of Economics and Management > > Ternopil State Economic University > > Shevchenko Street 9, Office 24-25 > > Ternopil, 46000 UKRAINE > > Tel: +38 (0352) 43 52 41 > > fax: +38 (0352) 43 52 45 > > Web: http://unf.tane.edu.ua > > > > On 7/27/06, Roman Kochan <rk...@ta...> wrote: > > > This is a forwarded message > > > From: chengyi li <lcy...@gm... > > > > To: rk...@ta... > > > Date: Thursday, July 27, 2006, 6:15:10 AM > > > Subject: The question of IEEE1451.1 study > > > > > > > > > > > > ===8<==============Original message text=============== > > > Mr Lee: > > > > > > How are you! > > > > > > I am agraduate student, I have been studying the IEEE1451,1 > > > standard recently, I read your paper <<Development of a Minimal > > > IEEE1451.1 Model for Microcontroller Implementation>>, but I > > > amconfusedatthe method inthe "CURRENT LIMITATIONS" section, the > > > content is "in order to run the sample IEEE1451.1 compatible > > > applications based on the neutral model, we will need to compile > > > libACE.so and lib1451.so". I want to know how can i get lib1451.so and > > > lib1451.a on a 32-bit linux PC. > > > > > > > > > > > > Thank for your help! > > > > > > > > > ===8<===========End of original message text=========== > > > > > > -- > > > Best regards, > > > Roman > > > > > > > > > > > > Mr Stepanenko: > How are you! > I am sorry to use this mail address again, because I had some problems > about your article indeed. > For compiling the 1451.1 library, firstly I download the ACE in Fedora > core 4 system, in which the kernel version is 2.6.11-1.1369_FC4, Through > compile and installation processes, I had libACE.so, which is a link to the > libACE.so.5.5.1, the libACE.so.5.5.1 takes 7.3MB, but in your paper the > libACE.so just takes 1.8MB of computing code, I want to know whether you > cut out the ACE for the 1451.1 only, if yes , how can I do these. > After installed the ACE, I compiled open1451-seattle-1.01 which > supports the IEEE1451.1 APIs. but I had a lot of bugs in my system, I > settled these bugs and linked the source code, the lib/ directory included 5 > libraries the name are lib1451objects.a lib1451types.a > lib1451inet.a lib1451support.a , tbc_pb.a, but I cannot find lib1451.a, I > want to know how I can get lib1451.so, whether I made some mistakes in the > compile process. > > > |
From: Williams, B. <bwi...@ra...> - 2005-11-17 20:11:11
|
Greetings: =20 =20 This error was caused by the flag #define USE_ACE_TASKS not being defined in the release configuration. =20 I have now gotten the MPC (auto-make from ACE/TAO) working with this code base. =20 I will post it after all debug/static builds are verified. =20 Bert Williams. =20 =20 =20 ________________________________ From: Williams, Bert=20 Sent: Wednesday, November 09, 2005 9:51 AM To: 'Andrew Stepanenko'; 'ope...@li...' Subject: Build Error -- Windows Base Build. =20 Greetings: =20 I am having some difficulty in determining the following error cause. =20 I can build the debug library (right from the distribution) installed on my build machine using properly configured paths &c with ACE 5.4.7, TAO 1.4.7. =20 I have not yet removed the recursive function calls (function "=3D=3D") = from the sources. =20 Does anyone have an idea of what might be causing this undefined error? =20 TIA, =20 Bert Williams. =20 Linking... Creating library .\Release/ieee1451.lib and object .\Release/ieee1451.exp clientport.obj : error LNK2019: unresolved external symbol "public: class ACE_Future<class ArgumentArray *> __thiscall IEEE1451_ClientPort::doExecute(void)" (?doExecute@IEEE1451_ClientPort@@QAE?AV?$ACE_Future@PAVArgumentArray@@@@ XZ) referenced in function "public: class OpReturnCode __thiscall IEEE1451_ClientPort::Execute(enum ExecuteMode const &,enum OperationID const &,class ArgumentArray const &,class ArgumentArray &)" (?Execute@IEEE1451_ClientPort@@QAE?AVOpReturnCode@@ABW4ExecuteMode@@ABW4 OperationID@@ABVArgumentArray@@AAV5@@Z) c:\RUSSV2DEV\russ\Software\ThirdParty\ncap\lib\ieee1451.dll : fatal error LNK1120: 1 unresolved externals =20 Build log was saved at "file://c:\Russv2dev\Russ\Software\ThirdParty\ncap\ieee1451\Release\Buil dLog.htm" ieee1451 - 2 error(s), 0 warning(s) =20 =20 ---------------------- Done ---------------------- =20 Build: 0 succeeded, 1 failed, 0 skipped |
From: Williams, B. <bwi...@ra...> - 2005-11-09 14:52:55
|
Greetings: =20 I am having some difficulty in determining the following error cause. =20 I can build the debug library (right from the distribution) installed on my build machine using properly configured paths &c with ACE 5.4.7, TAO 1.4.7. =20 I have not yet removed the recursive function calls (function "=3D=3D") = from the sources. =20 Does anyone have an idea of what might be causing this undefined error? =20 TIA, =20 Bert Williams. =20 Linking... Creating library .\Release/ieee1451.lib and object .\Release/ieee1451.exp clientport.obj : error LNK2019: unresolved external symbol "public: class ACE_Future<class ArgumentArray *> __thiscall IEEE1451_ClientPort::doExecute(void)" (?doExecute@IEEE1451_ClientPort@@QAE?AV?$ACE_Future@PAVArgumentArray@@@@ XZ) referenced in function "public: class OpReturnCode __thiscall IEEE1451_ClientPort::Execute(enum ExecuteMode const &,enum OperationID const &,class ArgumentArray const &,class ArgumentArray &)" (?Execute@IEEE1451_ClientPort@@QAE?AVOpReturnCode@@ABW4ExecuteMode@@ABW4 OperationID@@ABVArgumentArray@@AAV5@@Z) c:\RUSSV2DEV\russ\Software\ThirdParty\ncap\lib\ieee1451.dll : fatal error LNK1120: 1 unresolved externals =20 Build log was saved at "file://c:\Russv2dev\Russ\Software\ThirdParty\ncap\ieee1451\Release\Buil dLog.htm" ieee1451 - 2 error(s), 0 warning(s) =20 =20 ---------------------- Done ---------------------- =20 Build: 0 succeeded, 1 failed, 0 skipped |
From: Williams, B. <bwi...@ra...> - 2005-10-31 19:02:17
|
Greetings: =20 I have made a version of the subject code that uses an environment variable (NCAP_ROOT) to locate the top of the library. =20 Is there interest in: =20 1. Making a .mwc build script (like ACE/TAO uses) for this package 2. Making a static build for Windows (I need this for sizing purposes). =20 Bert Williams. =20 |
From: Williams, B. <bwi...@ra...> - 2005-10-14 21:41:38
|
I have updated sources and build environments for the "Gaithersburg" = version of the common spec that now build on the subject platform. =20 Unfortunately, the .zip file was rejected by the list server. |
From: Andrew S. <an...@ce...> - 2005-10-14 07:22:04
|
Hello, lib1451.a at my linux box is about 20Mb in size. Ehhh... Andrew. Williams, Bert wrote: > Andrew: > > I have not yet attempted to port the IEEE1451 C++ code. > > I just built ACE/TAO/DDS and demonstrated its operation on Windows > box. The executable for a very simple test is about 9Mbytes when > running (this may increase, I have not yet finished building "static" > libraries -- > the test uses Windows .dll files). > > The IEEE1451 "cleanup" is a task I will start sometime next week. > > Bert. > > > ------------------------------------------------------------------------ > *From:* Andrew Stepanenko [mailto:an...@ce...] > *Sent:* Thu 10/13/2005 3:00 PM > *To:* Williams, Bert > *Cc:* ope...@li... > *Subject:* Re: [Open1451-devel] Borland build of reference implementation. > > Hello Bert, > > thank you for your email and java sources of IEEE1415 implementation. > > Sorry for being silent these days. I had to arrange some issues with my > PhD application. > > Actually I haven't notice this your email in my inbox. I receive lots of > messages a day from various lists.. > During last days I actually managed to compile ysong's sample files from > the gaithersburs subdir in cvs. > > I successfully compiled these projects: > ACE 5.4.4 > ieee1451 lib > tempNCAP > Jncap > > Then I was able to run tempNCAP and Jncap on the same machine. Though > there are numerous NPE I still was able to activate tempNCAP Function > Block remotely via Jncap app and it started to print a temperature value > in a separate thread a guess. > > What I'm doing now is trying to get a minimal IEEE1451 implementation > (consisting of NCAP_Block, TransducerBlock, FunctionBlock and Ports > classes) from the neutral model provided by ysong and /rschneeman. /All > parent classes have to be present too of course. This tool, Rhapsody, > really inserts a lot of staff under "oxf/" directory which have to be > removed and it is time consuming... > > Haven't you done a clean C++ implementation of IEEE1451 before? > > Kindly regards, > > -- > Andrew Stepanenko, > Software engineer, > Ukrainian-Dutch Faculty of Economics and Management > Ternopil State Economic University > Shevchenko Street 9, Office 24-25 > Ternopil, 46000 UKRAINE > Tel: +38 (0352) 43 52 41 > fax: +38 (0352) 43 52 45 > Web: http://unf.tane.edu.ua > > > |
From: Andrew S. <an...@ce...> - 2005-10-13 20:59:22
|
Hello Bert, thank you for your email and java sources of IEEE1415 implementation. Sorry for being silent these days. I had to arrange some issues with my PhD application. Actually I haven't notice this your email in my inbox. I receive lots of messages a day from various lists.. During last days I actually managed to compile ysong's sample files from the gaithersburs subdir in cvs. I successfully compiled these projects: ACE 5.4.4 ieee1451 lib tempNCAP Jncap Then I was able to run tempNCAP and Jncap on the same machine. Though there are numerous NPE I still was able to activate tempNCAP Function Block remotely via Jncap app and it started to print a temperature value in a separate thread a guess. What I'm doing now is trying to get a minimal IEEE1451 implementation (consisting of NCAP_Block, TransducerBlock, FunctionBlock and Ports classes) from the neutral model provided by ysong and /rschneeman. /All parent classes have to be present too of course. This tool, Rhapsody, really inserts a lot of staff under "oxf/" directory which have to be removed and it is time consuming... Haven't you done a clean C++ implementation of IEEE1451 before? Kindly regards, -- Andrew Stepanenko, Software engineer, Ukrainian-Dutch Faculty of Economics and Management Ternopil State Economic University Shevchenko Street 9, Office 24-25 Ternopil, 46000 UKRAINE Tel: +38 (0352) 43 52 41 fax: +38 (0352) 43 52 45 Web: http://unf.tane.edu.ua |
From: Williams, B. <bwi...@ra...> - 2005-10-06 12:21:34
|
Greetings: =20 In my previous email, I indicated that I had removed the Rhapsody references from the code base and ported the build to the Borland JBuilder IDE. =20 I have now ported this "clean" port (by clean, I mean "no proprietary software included"). More people would use this if it did not require this tool. =20 When I compiled the code base with Eclipse, I found the following problems. These are coding problems that should be easily corrected. =20 =20 1. The assignment to variable publication_topic has no effect IEEE1451_BasePublisherPort.java IEEE1451/src/ObjectModel line 98 October 6, 2005 7:56:15 AM =20 This should probably be changed to assign the value to the class variable "publicationTopic". =20 2. The local variable returnCode1 is never read IEEE1451_NCAPBlock.java IEEE1451/src/ObjectModel line 318 October 6, 2005 7:56:14 AM =20 The return of this value should be made executable. There are paths in this routine that will not work. =20 3. The assignment to variable updateTimestampUncertainty has no effect IEEE1451_TransducerBlock.java IEEE1451/src/ObjectModel line 173 October 6, 2005 7:56:14 AM =20 Again, the assignment is coded improperly. I think it should read "update_timestamp_uncertainty=3DupdateTimestampUncertainty. =20 4. The assignment to variable port has no effect ObjectDispatchAddress.java IEEE1451/src/DataModel line 49 October 6, 2005 7:56:16 AM =20 Again, the assignment is coded improperly. It should read "this.port = =3D port_no". =20 I have _not_ made these changes to the clean version. I think it desirable to clean this from the top rather than branching the source at this point. =20 It is desirable to have the reference implementation _not_ depend on a proprietary tool =20 I can ship the eclipse build via .zip file to the site maintenance team if desired. =20 Bert Williams. =20 =20 =20 |
From: Williams, B. <bwi...@ra...> - 2005-10-04 19:02:04
|
Greetings: =20 I do not know if this project is still "active"; however, if the developers are interested, I have a version of the reference implementation with all references to the=20 Ilogix toolchain removed and replaced by stubs for events, threads, and states. It compiles under Borland JBuilder 2005. I have not completed implementing a=20 compatible run-time system; rather, I just needed a clean compile in order to evaluate the model. =20 I can ship the whole tree as a .zip file if this is desired. =20 Bert Williams. |
From: Yuyin S. <ys...@cm...> - 2003-08-28 15:23:03
|
Hi Rick, How are you doing? Kang would like to contact you for award. If possible, Please contact Kang as soon as possible, Thanks. Regards, Yuyin |