Code Monkey home page Code Monkey logo

Comments (4)

clausecker avatar clausecker commented on June 22, 2024

Why don't you do any error checking, especially with the type assertions? Please make sure that all type assertions are successful. In the meanwhile, let me check what went wrong.

The code hasn't been really tested (cf. README), let me see what I missed in there.

from freefare.

clausecker avatar clausecker commented on June 22, 2024

It seems like I get a NULL pointer somewhere. I should definitely check for that in case someone forgets to check for errors.

from freefare.

Lesterpig avatar Lesterpig commented on June 22, 2024

Thank you for you answer.

Here is an updated version with its result:

func Connect(device nfc.Device) (*freefare.DESFireTag, error) {

    // Scan for tags
    modulation := nfc.Modulation{
        Type: nfc.ISO14443a,
        BaudRate: nfc.Nbr424,
    }

    nfcTag, err := device.InitiatorSelectPassiveTarget(modulation, nil)
    fmt.Println(err)
    isoTarget, ok := nfcTag.(*nfc.ISO14443aTarget)
    fmt.Println(ok)
    rawTag, err := freefare.NewTag(device, isoTarget)
    fmt.Println(err)

    tag := rawTag.(freefare.DESFireTag)
    fmt.Println(tag)

    err = tag.Connect()
    if err != nil {
        return nil, err
    }

    return &tag, nil

}
<nil>
true
<nil>
Mifare DESFire
fatal error: unexpected signal during runtime execution
[signal 0xb code=0x2 addr=0x7f53647f9c47 pc=0x7f537bb9e9b8]

from freefare.

clausecker avatar clausecker commented on June 22, 2024

Well, okay, that's interesting. Let me debug further.

from freefare.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.