Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. amoarg69
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    amoarg69

    @amoarg69

    0
    Reputation
    2
    Posts
    386
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    amoarg69 Follow

    Best posts made by amoarg69

    This user hasn't posted anything yet.

    Latest posts made by amoarg69

    • RE: Problems with ENC28J60 losing connection/freezing (using UIPEthernet or etherShield)? READ THIS!

      @m26872 Thanks!
      Wich library is better to use? UIPEthernet works well with W5100? I need a library that can handle client/server request.
      Thanks very much!!!

      posted in Troubleshooting
      amoarg69
      amoarg69
    • RE: Problems with ENC28J60 losing connection/freezing (using UIPEthernet or etherShield)? READ THIS!

      HI! Thanks for the topic! I'm new on this forum and I'm using enc28j60 with UIPE Lib. I have a lot of hang-up in my sketch.
      Can somebody tell me wich is the best adapter-library combination to make a secure client-server arduno based sensor?
      enc28j60 O WIZNET5100? UIPEEthernet, Ethercard or EtherShield ?

      The solution proposed is modify enc28j60.cpp about line 215

      Enc28J60Network::sendPacket(memhandle handle)
      .....
      if( (readReg(EIR) & EIR_TXERIF) )
      {
      writeOp(ENC28J60_BIT_FIELD_CLR, ECON1, ECON1_TXRTS);
      }
      ...
      }

      by

      if( (enc28j60Read(EIR) & EIR_TXERIF) )
      {
      enc28j60WriteOp(ENC28J60_BIT_FIELD_SET, ECON1, ECON1_TXRST);
      enc28j60WriteOp(ENC28J60_BIT_FIELD_CLR, ECON1, ECON1_TXRST);
      enc28j60WriteOp(ENC28J60_BIT_FIELD_CLR, EIR, EIR_TXERIF);
      }

      It is correct???

      Sorry for my English. Thanks again. Daniel

      posted in Troubleshooting
      amoarg69
      amoarg69