Thread: [myhdl-list] tristatesignal
Brought to you by:
jandecaluwe
From: guenther s. <gue...@gm...> - 2015-03-20 20:20:21
|
When i use TristateSignal with the function traceSignals(), then i get this message: ValueError: I2C_SDAT of module foo has no initial value Can anybody please help me how i can solve this problem? Thank you very much. |
From: SHEN C. <she...@co...> - 2015-03-22 15:46:58
|
> When i use TristateSignal with the function > traceSignals(), then i get this message: > ValueError: I2C_SDAT of module foo has no initial value This is a result of pull-request 21 (which fixes issue 19) in github. I encountered similar problem last week, but was too busy travelling around to commit my fix to it. Will test and raise PR asap. regards, shenchen |
From: Günther S. <gue...@gm...> - 2015-03-22 17:36:20
|
thank you very much. looking forward for the fix. regards, guenther Am 22.03.2015 um 16:46 schrieb SHEN Chen: >> When i use TristateSignal with the function >> traceSignals(), then i get this message: >> ValueError: I2C_SDAT of module foo has no initial value > This is a result of pull-request 21 (which fixes issue 19) in github. > > I encountered similar problem last week, but was too busy travelling > around > to commit my fix to it. > > Will test and raise PR asap. > > regards, > > shenchen > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > myhdl-list mailing list > myh...@li... > https://lists.sourceforge.net/lists/listinfo/myhdl-list > |
From: SHEN C. <she...@co...> - 2015-03-23 20:54:46
|
> > Am 22.03.2015 um 16:46 schrieb SHEN Chen: > >>> When i use TristateSignal with the function traceSignals(), then i >>> get this message: ValueError: I2C_SDAT of module foo has no initial >>> value >> This is a result of pull-request 21 (which fixes issue 19) in >> github. >> I encountered similar problem last week, but was too busy travelling >> around to commit my fix to it. Will test and raise PR asap. >> I've raised a pull request (https://github.com/jandecaluwe/myhdl/pull/39) with fixes. Passes travis-ci and local designs tests. Please test and comment. thx. regards, shenchen |
From: Günther S. <gue...@gm...> - 2015-03-23 21:47:16
|
Hi, i am doing pip install --upgrade git+https://github.com/jandecaluwe/myhdl/pull/39 but this raises an error: error: The requested URL returned error: 403 while accessing https://github.com/jandecaluwe/myhdl/pull/39/info/refs How do i get your changes. Regards, guenther Am 23.03.2015 um 21:54 schrieb SHEN Chen: >> Am 22.03.2015 um 16:46 schrieb SHEN Chen: >> >>>> When i use TristateSignal with the function traceSignals(), then i >>>> get this message: ValueError: I2C_SDAT of module foo has no initial >>>> value >>> This is a result of pull-request 21 (which fixes issue 19) in >>> github. >>> I encountered similar problem last week, but was too busy travelling >>> around to commit my fix to it. Will test and raise PR asap. >>> > I've raised a pull request > (https://github.com/jandecaluwe/myhdl/pull/39) with fixes. > Passes travis-ci and local designs tests. > Please test and comment. thx. > > regards, > shenchen > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > myhdl-list mailing list > myh...@li... > https://lists.sourceforge.net/lists/listinfo/myhdl-list > -- Mit freundlichen Grüßen Günther Stangassinger |
From: Christopher F. <chr...@gm...> - 2015-03-23 21:55:59
|
On 3/23/2015 4:47 PM, Günther Stangassinger wrote: > Hi, > i am doing > pip install --upgrade git+https://github.com/jandecaluwe/myhdl/pull/39 > but this raises an error: > error: The requested URL returned error: 403 while accessing > https://github.com/jandecaluwe/myhdl/pull/39/info/refs > I don't know if you can use pip from a PR or branch, until it is merged you will probably need to do: >> git clone https://github.com/cogenda/myhdl/ >> cd myhdl >> git checkout tristate_vcd >> python setup install Hope that helps, Chris |
From: Günther S. <gue...@gm...> - 2015-03-23 18:46:25
|
Hi Shen, how do i know, when the new fix is applied and how do i get the new fix. Can i just update it with then with: pip install --upgrade myhdl Regards, guenther Am 22.03.2015 um 16:46 schrieb SHEN Chen: >> When i use TristateSignal with the function >> traceSignals(), then i get this message: >> ValueError: I2C_SDAT of module foo has no initial value > This is a result of pull-request 21 (which fixes issue 19) in github. > > I encountered similar problem last week, but was too busy travelling > around > to commit my fix to it. > > Will test and raise PR asap. > > regards, > > shenchen > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > myhdl-list mailing list > myh...@li... > https://lists.sourceforge.net/lists/listinfo/myhdl-list > -- Mit freundlichen Grüßen Günther Stangassinger |
From: Christopher F. <chr...@gm...> - 2015-03-23 19:02:41
|
On 3/23/2015 1:46 PM, Günther Stangassinger wrote: > Hi Shen, > how do i know, when the new fix is applied > and how do i get the new fix. > Can i just update it with then with: > > pip install --upgrade myhdl > The `pip install` will only work with the next release. You will want to clone the master branch [1] or do: pip install --upgrade git+https://github.com/jandecaluwe/myhdl Regards, Chris [1] http://dev.myhdl.org/guide.html#tracking-development |
From: Günther S. <gue...@gm...> - 2015-03-23 22:08:16
|
thank you very much. it is working :-) regards, guenther stangassinger Am 23.03.2015 um 22:55 schrieb Christopher Felton: > On 3/23/2015 4:47 PM, Günther Stangassinger wrote: >> Hi, >> i am doing >> pip install --upgrade git+https://github.com/jandecaluwe/myhdl/pull/39 >> but this raises an error: >> error: The requested URL returned error: 403 while accessing >> https://github.com/jandecaluwe/myhdl/pull/39/info/refs >> > I don't know if you can use pip from a PR or > branch, until it is merged you will probably > need to do: > > >> git clone https://github.com/cogenda/myhdl/ > >> cd myhdl > >> git checkout tristate_vcd > >> python setup install > > > Hope that helps, > Chris > > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > myhdl-list mailing list > myh...@li... > https://lists.sourceforge.net/lists/listinfo/myhdl-list > |
From: Keerthan JC <jck...@gm...> - 2015-03-24 02:38:26
|
You can use pip to install a branch like so: pip install git+https://github.com/cogenda/myhdl@tristate_vcd On Mon, Mar 23, 2015 at 6:08 PM, Günther Stangassinger < gue...@gm...> wrote: > thank you very much. > it is working :-) > regards, > guenther stangassinger > > > > Am 23.03.2015 um 22:55 schrieb Christopher Felton: > > On 3/23/2015 4:47 PM, Günther Stangassinger wrote: > >> Hi, > >> i am doing > >> pip install --upgrade git+ > https://github.com/jandecaluwe/myhdl/pull/39 > >> but this raises an error: > >> error: The requested URL returned error: 403 while accessing > >> https://github.com/jandecaluwe/myhdl/pull/39/info/refs > >> > > I don't know if you can use pip from a PR or > > branch, until it is merged you will probably > > need to do: > > > > >> git clone https://github.com/cogenda/myhdl/ > > >> cd myhdl > > >> git checkout tristate_vcd > > >> python setup install > > > > > > Hope that helps, > > Chris > > > > > > > > > ------------------------------------------------------------------------------ > > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > > by Intel and developed in partnership with Slashdot Media, is your hub > for all > > things parallel software development, from weekly thought leadership > blogs to > > news, videos, case studies, tutorials and more. Take a look and join the > > conversation now. http://goparallel.sourceforge.net/ > > _______________________________________________ > > myhdl-list mailing list > > myh...@li... > > https://lists.sourceforge.net/lists/listinfo/myhdl-list > > > > > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > myhdl-list mailing list > myh...@li... > https://lists.sourceforge.net/lists/listinfo/myhdl-list > -- have a nice day -jck |