Search found 342 matches

by danicampora
Tue Aug 18, 2015 7:56 am
Forum: MicroPython pyboard
Topic: How to safely close SD card/file before power off?
Replies: 4
Views: 5259

Re: How to safely close SD card/file before power off?

The f.close() call should be enough to get the file fully written.
by danicampora
Sat Aug 15, 2015 5:40 pm
Forum: Other Boards
Topic: Speed on STM32F7 disco
Replies: 3
Views: 4784

Re: Speed on STM32F7 disco

Wow! the cache makes quite a difference!
by danicampora
Tue Aug 11, 2015 1:21 pm
Forum: MicroPython pyboard
Topic: What terminal blocks will fit?
Replies: 6
Views: 5731

Re: What terminal blocks will fit?

I should say that I didn't find that number anywhere on the wipy.io website; just pictures of the WiPy plugged into a breadboard. @danicampora, maybe you could point to that spec somewhere in the documentation? Thanks for the remark, we are preparing a hardware manual that will also show the dimens...
by danicampora
Mon Aug 10, 2015 1:09 pm
Forum: MicroPython pyboard
Topic: What terminal blocks will fit?
Replies: 6
Views: 5731

Re: What terminal blocks will fit?

The only down-side is that they do not fit into 2.5mm spaced holes (they're 3.5mm spaced) - but they do fit in most perf/proto-board if you rotate them diagonally (see photo above).
They won't ;-)
by danicampora
Mon Aug 10, 2015 10:38 am
Forum: WiPy and CC3200 boards
Topic: WiPy listening for WLAN activity
Replies: 10
Views: 11940

Re: WiPy listening for WLAN activity

Does MicroPython provide things like socket.ioctl() and socket.setsockopt() for controlling socket behaviour (and implement them for WiPy)? So could I do sniffing / promiscuous listening?
Yes, both are implemented.
by danicampora
Sun Aug 09, 2015 8:32 pm
Forum: WiPy and CC3200 boards
Topic: WiPy listening for WLAN activity
Replies: 10
Views: 11940

Re: WiPy listening for WLAN activity

Hello theBellHead, This can be done just using standard Python sockets calls, for example: import select, socket import pyb from network import WLAN s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.bind(('', '8889')) s.setblocking(False) # then, to receive something result = select.select([s],...
by danicampora
Sun Aug 02, 2015 11:22 am
Forum: WiPy and CC3200 boards
Topic: Power Specifications
Replies: 7
Views: 8890

Re: Power Specifications

I did some testing and also checked the CC3200 datasheet again. Active (WiFi Disable mode) MCU @ 80MHz The current only drops 800uA, therefore I don't think that the benefit is worth the hassle. So instead of 14mA it consumes 13.2. The CC3200 Network Processor was designed from the ground up to be u...
by danicampora
Fri Jul 31, 2015 6:55 pm
Forum: WiPy and CC3200 boards
Topic: Power Specifications
Replies: 7
Views: 8890

Re: Power Specifications

Remark on the previous post:

The issue with file operations while WiFi is disabled only affects /flash file system. The SD card has no issues with this.
by danicampora
Fri Jul 31, 2015 6:21 pm
Forum: WiPy and CC3200 boards
Topic: Power Specifications
Replies: 7
Views: 8890

Re: Power Specifications

Hi JimTal001, 1. Why is the power requirement so high in suspended WiFi AP mode as compared to suspended WiFi Station mode? Because an access point needs to fulfill certain requirements like sending beacons, keeping the receiver ON all the time, etc. This needs to be done like this in order to be fu...
by danicampora
Fri Jul 31, 2015 8:12 am
Forum: WiPy and CC3200 boards
Topic: Power Specifications
Replies: 7
Views: 8890

Re: Power Specifications

Hello JimTal001, We will add detailed tech specs with this info to our website. In the mean time, here they are: Active (WiFi Station mode) MCU @ 80MHz ---> 14mA Active (WiFi AP mode) MCU @ 80MHz ---> 45mA Suspended (WiFi Station mode) ---------------> 850uA Suspended (WiFi AP mode) ----------------...