This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Simple Mbed led blinking demo for STM32F3Discovery board. | |
* | |
* It uses leds that are attached to pins PE_8 - PE_15. | |
*/ | |
#include "mbed.h" | |
int main() | |
{ | |
uint8_t mask = 0x01; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
The script contains example of the paramiko usage for large file downloading. | |
It implements :func:`download` with limited number of concurrent requests to server, whereas | |
paramiko implementation of the :meth:`paramiko.SFTPClient.getfo` send read requests without | |
limitations, that can cause problems if large file is being downloaded. | |
""" | |
import logging | |
import os |