Search found 75 matches

by lnsri22
Sun Mar 08, 2020 12:29 pm
Forum: General Discussion and Questions
Topic: Simple and powerful library for memory interfaces by pete
Replies: 0
Views: 1904

Simple and powerful library for memory interfaces by pete

I was searching for a library for EEPROM interface with STM32F4. After trying out some libraries here and there and implementing my own stuff, landed here fortunately. https://github.com/peterhinch/micropython_eeprom Thanks a lot from the bottom of my heart , pete for this awesome work!! It saved me...
by lnsri22
Sun Mar 08, 2020 12:22 pm
Forum: General Discussion and Questions
Topic: Unregistering an EXTI - pyb
Replies: 3
Views: 2682

Re: Unregistering an EXTI - pyb

Thanks again!!

Sorry for getting back too late on this.

Worked as well
by lnsri22
Sun Mar 08, 2020 12:21 pm
Forum: General Discussion and Questions
Topic: Frozen modules in uPython version 1.12
Replies: 2
Views: 1898

Re: Frozen modules in uPython version 1.12

Thanks Jimmo,

Got it working!!
by lnsri22
Fri Feb 28, 2020 9:13 am
Forum: General Discussion and Questions
Topic: Frozen modules in uPython version 1.12
Replies: 2
Views: 1898

Frozen modules in uPython version 1.12

Hello Everyone!!

I have been trying to find a folder named module to put up my frozen modules.

Unfortunately there is no such folder as it were in 1.11

How do I get this done?

Thanks
by lnsri22
Thu Nov 07, 2019 6:02 am
Forum: General Discussion and Questions
Topic: Unregistering an EXTI - pyb
Replies: 3
Views: 2682

Re: Unregistering an EXTI - pyb

Thanks for the suggestion!!

Let me give it a try and get back
by lnsri22
Sat Nov 02, 2019 9:59 am
Forum: General Discussion and Questions
Topic: Unregistering an EXTI - pyb
Replies: 3
Views: 2682

Unregistering an EXTI - pyb

Hello Everyone!!

I am trying to use EXTI with pyb. How do I un register a previously registered interrupt and register it again.

Thanks!!
by lnsri22
Sat Nov 02, 2019 7:41 am
Forum: General Discussion and Questions
Topic: Interrupt vector numbers
Replies: 3
Views: 4887

Re: Interrupt vector numbers

Thanks for the useful information. Encountered such a scenario, just now!!
by lnsri22
Mon Oct 21, 2019 7:30 am
Forum: Drivers for External Components
Topic: LCD display [Advise needed]
Replies: 23
Views: 26472

Re: LCD display [Advise needed]

Can Someone clarify on why this won't work with STM32 Nucleo-f401re ?

After connecting, I could only see the display getting reset properly.

Nothing more!!
by lnsri22
Sat Aug 17, 2019 5:01 am
Forum: General Discussion and Questions
Topic: PyCon AU 2019
Replies: 1
Views: 1839

Re: PyCon AU 2019

Great !!

Excited to go through the playlist.

Thanks for the detailed update and links too!! :D
by lnsri22
Tue Mar 26, 2019 7:30 am
Forum: General Discussion and Questions
Topic: Could not import 'btree' in MicroPython 1.9.4
Replies: 9
Views: 5679

Re: Could not import 'btree' in MicroPython 1.9.4

Any progress? I couldn't help but notice that BTree is written in c. You probably need to set the right flag, recompile the micropython codebase and create your new firmware for your case. >>> extmod/modbtree.c Line 35: #if MICROPY_PY_BTREE So, set the flag and recompile? Thanks Picasso!! Your sugg...