Register
Page 505 of 854 FirstFirst ... 5405455495500501502503504505506507508509510515555605 ... LastLast
Results 7,561 to 7,575 of 12803
  1. #7561
    DK Veteran

    Join Date
    May 2010
    Posts
    634
    Thanks Thanks Given 
    140
    Thanks Thanks Received 
    195
    Thanked in
    123 Posts

    Default

    Quote Originally Posted by Elektrik1 View Post
    [...]

    Which corresponds to:
    !o18 = i11 & !i8;
    !o16 = (i11 & !i7) # (!i6 & !i5 & !i2);
    !o15 = !i5;
    !o13 = (!f17 & !i6 & !i2) # !f14;
    !o12 = !f17 & !i2;[/CODE]

    100% match to 1024 combinations logic, will check to all possible pins and outputs. Attaching fully working 0x46 .JED

    We made it!

    0x46.JED:
    Code:
    CUPL(WM)        5.0a  Serial# 60008009
    Device          g16v8as  Library DLIB-h-40-2
    Created         Fri Jan 04 18:22:51 2019
    Name            0x46 
    Partno          00 
    Revision        01 
    Date            2019-01-04 
    Designer        Elektrik 
    Company         * 
    Assembly        None 
    Location        
    *QP20 
    *QF2194 
    *G0 
    *F0 
    *L00256 11111111111111111111111110111110
    *L00768 11111111111111111111101111111110
    *L00800 10111111111110111011111111111111
    *L01024 11111111111110111111111111111111
    *L01536 10111111111111101011111111111111
    *L01568 11111111111111111110111111111111
    *L01792 10111111111111101111111111111111
    *L02048 00000000001100000011000000100000
    *L02112 00000000101001001111111111111111
    *L02144 11111111111111111111111111111111
    *L02176 111111111111111110
    *C21AA
    *A040
    With this my compilation appear like..


    Location
    *QP20
    *QF2194
    *G1
    *F0
    *L00256 11111111111111111111111110111101
    *L00768 10111111111110111011111111111111
    *L00800 11111111111111111111101111111101
    *L01024 11111111111110111111111111111111
    *L01536 10111111111111101011111111111111
    *L01568 11111111111111111110111111111111
    *L01792 10111111111111101111111111111111
    *L02048 00000000001100000011000000100000
    *L02112 00000000101001001111111111111111
    *L02144 11111111111111111111111111111111
    *L02176 111111111111111110
    *C222A
    *A207

    Which optimization used you?

    And...

    !o18 = i11 & !i8;
    !o16 = (i11 & !i7) # (!i6 & !i5 & !i2);

    For sure is not !i11?
    Last edited by liviudiaconu; 5th January, 2019 at 12:32 PM.

  2. #7562
    DK Veteran
    xoom's Avatar
    Join Date
    Dec 2009
    Location
    Ylakiai
    Posts
    386
    Thanks Thanks Given 
    32
    Thanks Thanks Received 
    370
    Thanked in
    70 Posts

    Default

    !o18 = i11 & !i8 < - is this should not to be like: !o18 = (!i11 & !i8) # (!i5 & !i9) ?

  3. #7563
    DK Veteran

    Join Date
    May 2010
    Posts
    634
    Thanks Thanks Given 
    140
    Thanks Thanks Received 
    195
    Thanked in
    123 Posts

    Default

    i9 not used in 46..so..!i9 is 1 allways?

  4. #7564
    DK Veteran
    xoom's Avatar
    Join Date
    Dec 2009
    Location
    Ylakiai
    Posts
    386
    Thanks Thanks Given 
    32
    Thanks Thanks Received 
    370
    Thanked in
    70 Posts

    Default

    it is used in both 0x44 and 0x46... FTDI TX pin goes there

  5. #7565
    DK Veteran
    xoom's Avatar
    Join Date
    Dec 2009
    Location
    Ylakiai
    Posts
    386
    Thanks Thanks Given 
    32
    Thanks Thanks Received 
    370
    Thanked in
    70 Posts

    Default

    Quote Originally Posted by liviudiaconu View Post
    i9 not used in 46..so..!i9 is 1 allways?
    hmm or maybe it doesn't checked china board and yes its not connected but would be interesting to see original version

  6. #7566
    DK Veteran

    Join Date
    May 2010
    Posts
    634
    Thanks Thanks Given 
    140
    Thanks Thanks Received 
    195
    Thanked in
    123 Posts

    Default

    I remember the year when i modified my first 704 with RL by rerouting 3 wires and rewrote GAL with "44".jed (see Aminebot file).
    The FTDI Tx go to pin 5 GAL (STC, R50/R51/Reseter used too and desoldered)

    So, for sure the pin 9 not used.

    In my .jed two lines are reversed like in last 46.jed posted by Elektrik

    *L00768 11111111111111111111101111111110
    *L00768 10111111111110111011111111111111

    *L00800 10111111111110111011111111111111
    *L00800 11111111111111111111101111111110

    Where i wrong?

    I made only two modifications (without this the .jed is more different)

    Elektrik say this:

    PIN 18
    ---------------------------------------
    (1) X = I
    or K;

    not X = not I and not K;
    ---------------------------------------

    PIN 16
    ---------------------------------------
    (1) X = I and M
    or I and N
    or I and Q
    or L and M
    or L and N
    or L and Q;

    not X = not I and not L
    or not M and not N and not Q;
    ---------------------------------------

    PIN 17 MAYBE 15...
    ---------------------------------------
    (1) X = N;

    not X = not N;
    ---------------------------------------

    PIN 13
    ---------------------------------------
    (1) X = C and F
    or F and M
    or F and Q;

    not X = not C and not M and not Q
    or not F;
    ---------------------------------------

    PIN 12
    ---------------------------------------
    (1) X = C
    or Q;

    not X = not C and not Q;
    ---------------------------------------

    Which corresponds to:
    !o18 = !i11 & !i8;
    !o16 = (!i11 & !i7) # (!i6 & !i5 & !i2);
    !o15 = !i5;
    !o13 = (!f17 & !i6 & !i2) # !f14;
    !o12 = !f17 & !i2;

    With this obtained

    *QP20
    *QF2194
    *G1
    *F0
    *L00256 11111111111111111111111110111110
    *L00768 10111111111110111011111111111111
    *L00800 11111111111111111111101111111110

    *L01024 11111111111110111111111111111111
    *L01536 10111111111111101011111111111111
    *L01568 11111111111111111110111111111111
    *L01792 10111111111111101111111111111111
    *L02048 00000000001100000011000000100000
    *L02112 00000000101001001111111111111111
    *L02144 11111111111111111111111111111111
    *L02176 111111111111111110
    *C21AA
    *A220
    Last edited by liviudiaconu; 5th January, 2019 at 01:28 PM.

  7. The Following User Says Thank You to liviudiaconu For This Useful Post:

    jakuza (11th January, 2019)

  8. #7567
    DK Veteran

    Join Date
    May 2010
    Posts
    634
    Thanks Thanks Given 
    140
    Thanks Thanks Received 
    195
    Thanked in
    123 Posts

    Default

    Look difference RL46 vs BM 44 GAL to FTDI/Atmega pins
    Attached Images Attached Images
    Last edited by liviudiaconu; 5th January, 2019 at 02:09 PM.

  9. The Following 2 Users Say Thank You to liviudiaconu For This Useful Post:

    jakuza (11th January, 2019), xoom (5th January, 2019)

  10. #7568
    Junior Member
    Join Date
    Dec 2016
    Location
    Vilnius, Lithuania
    Posts
    35
    Thanks Thanks Given 
    9
    Thanks Thanks Received 
    59
    Thanked in
    13 Posts

    Default

    liviudiaconu, ,yeah PIN 15 there should be, typo. Sorry forgot to post the header, this is full project:
    Code:
    Name     0x46 ;
    PartNo   00 ;
    Date     2019-01-02 ;
    Revision 01 ;
    Designer Elektrik ;
    Company  * ;
    Assembly None ;
    Location  ;
    Device   g16v8a ;
    
    /* *************** INPUT PINS *********************/
    PIN 2    = i2                        ; /*                                 */ 
    PIN 3    = i3                        ; /*                                 */ 
    PIN 5    = i5                        ; /*                                 */ 
    PIN 6    = i6                        ; /*                                 */ 
    PIN 7    = i7                        ; /*                                 */
    PIN 8    = i8                        ; /*                                 */ 
    PIN 11   = !i11                       ; /*                                 */ 
    
    /* *************** OUTPUT PINS *********************/
    PIN 12   = o12                       ; /*                                 */ 
    PIN 13   = o13                       ; /*                                 */ 
    PIN 14   = f14                       ; /*                                 */
    PIN 15   = o15                       ; /*                                 */ 
    PIN 16   = o16                       ; /*                                 */ 
    PIN 17   = f17                       ; /*                                 */ 
    PIN 18   = o18                       ; /*                                 */
    PIN 19   = f19                       ; /*                                 */ 
    
    !o18 = i11 & !i8;
    !o16 = (i11 & !i7) # (!i6 & !i5 & !i2);
    !o15 = !i5;
    !o13 = (!f17 & !i6 & !i2) # !f14;
    !o12 = !f17 & !i2;
    i11 is inverted in pin definition.

  11. The Following User Says Thank You to Elektrik1 For This Useful Post:

    liviudiaconu (6th January, 2019)

  12. #7569
    Newbie Mrjitter's Avatar
    Join Date
    Dec 2010
    Location
    Spain
    Posts
    15
    Thanks Thanks Given 
    19
    Thanks Thanks Received 
    1
    Thanked in
    1 Post

    Default

    hi

    Searching through my old files I found this ....

    https://rapidgator.net/file/4ed94933..._love.zip.html

    I think this file corresponds to a gal file of type 0x46 for the images found in the doc attached in the files.

    the doc translate by google to english ...

    https://rapidgator.net/file/91f7ea31...ru.en.doc.html


    Please .... anyone can post the .jed gal file for 0x44 type ?

    Regards
    Last edited by Mrjitter; 5th January, 2019 at 06:41 PM.

  13. #7570
    Member
    Join Date
    Sep 2016
    Posts
    44
    Thanks Thanks Given 
    16
    Thanks Thanks Received 
    2
    Thanked in
    2 Posts

    Default

    how to power up vcds with 12 v i got the ordino programer and i shearched here no pic how to do it i cant do it in my car obd2 the operation will be done here at my home in which pins i connect the ac charger 12 v to the vcds ?

  14. #7571
    Top Poster

    Join Date
    Mar 2018
    Posts
    174
    Thanks Thanks Given 
    42
    Thanks Thanks Received 
    140
    Thanked in
    64 Posts

    Default

    [QUOTE = Mrjitter; 3464667] hi

    При поиске в моих старых файлах я нашел это ....

    https://rapidgator.net/file/4ed94933..._love.zip.html

    Я думаю, что этот файл соответствует файлу gal типа 0x46 для изображения, найденные в документе, прилагаемом к файлам.

    Документ переведен Google на английский ...

    https://rapidgator.net/file/91f7ea31...ru.en.doc.html


    Пожалуйста .... кто-нибудь может опубликовать файл .jed gal для типа 0x44?

    С уважением [/ QUOTE]
    Пожалуйста
    Attached Files Attached Files

  15. The Following User Says Thank You to Roma77 For This Useful Post:

    Mrjitter (5th January, 2019)

  16. #7572
    Newbie
    Join Date
    Dec 2018
    Posts
    11
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    5
    Thanked in
    3 Posts

    Default

    I wonder why pin 19 and pin 3 is not used any longer? Audi needs RX on L Line?!

  17. #7573
    Top Poster jan4's Avatar
    Join Date
    May 2018
    Location
    somewhere in Belgium
    Posts
    123
    Thanks Thanks Given 
    117
    Thanks Thanks Received 
    40
    Thanked in
    32 Posts

    Default

    heshamzn


    obd connector pin 16 + , 5 -

  18. #7574
    Junior Member
    Join Date
    Dec 2016
    Location
    Vilnius, Lithuania
    Posts
    35
    Thanks Thanks Given 
    9
    Thanks Thanks Received 
    59
    Thanked in
    13 Posts

    Default

    Mjriter, it's 0x44 jed in your pack. C3H8, l line only needs to be output for 5baud wake process on old vw/audi ecu's. No other data is sent there afaik. That's why Lline input is not used.
    Last edited by Elektrik1; 6th January, 2019 at 12:02 AM.

  19. The Following User Says Thank You to Elektrik1 For This Useful Post:

    Mrjitter (5th January, 2019)

  20. #7575
    Newbie Mrjitter's Avatar
    Join Date
    Dec 2010
    Location
    Spain
    Posts
    15
    Thanks Thanks Given 
    19
    Thanks Thanks Received 
    1
    Thanked in
    1 Post

    Default

    Ok Elektrik1

    Thank you for the clarification

    Regards

 

 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.