Skip to content

Commit f97678f

Browse files
committed
Some updates in comments, no code changes
1 parent 29a3bee commit f97678f

File tree

11 files changed

+22
-82
lines changed

11 files changed

+22
-82
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: loboris
2+
custom: https://www.paypal.me/BLovosevic

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
***
1818

19+
_**If you find this project useful, you can contribute by making a donation**_[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/BLovosevic)
20+
21+
***
22+
1923
This implementation was based on Sipeed [**MaixPy**](https://github.com/sipeed/MaixPy), but it deverged from it and is now a completely independent project.<br>
2024

2125
### Main features:

k210-freertos/env.txt

Lines changed: 0 additions & 66 deletions
This file was deleted.

k210-freertos/mpy_support/standard_lib/include/vfs_sdcard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
2+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
33
*
44
* The MIT License (MIT)
55
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
6+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

k210-freertos/mpy_support/standard_lib/machine/machine_i2c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ static void _init_i2c_object(mp_machine_i2c_obj_t *self)
618618

619619
if ((self->slave_busy) && (self->slave_rolen == 0)) self->slave_rolen = 1;
620620

621-
// Setup I2C master
621+
// Setup I2C slave
622622
memset(&slave_state, 0, sizeof(i2c_slave_state_t));
623623
memset(&task_state, 0, sizeof(i2c_slave_state_t));
624624

k210-freertos/mpy_support/standard_lib/mqtt/mqtt_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Slightly modified mqtt library from https://github.com/espressif/esp-mqtt
99
*
1010
* Copyright (c) 2018 tuanpm (https://github.com/tuanpmt/espmqtt)
11-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
11+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
1212
*/
1313

1414
#include "platform_k210.h"

k210-freertos/mpy_support/standard_lib/network/modrequests.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
2+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
33
*
44
* The MIT License (MIT)
55
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
6+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
77
*
88
* Permission is hereby granted, vPortFree of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

k210-freertos/mpy_support/standard_lib/sqlite3/modsqlite3.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
2+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
33
*
44
* The MIT License (MIT)
55
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
6+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

k210-freertos/mpy_support/standard_lib/uos/vfs_sdcard.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
2+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
33
*
44
* The MIT License (MIT)
55
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
6+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

k210-freertos/mpy_support/standard_lib/uos/vfs_sdcard_file.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
2+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
33
*
44
* The MIT License (MIT)
55
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
6+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

mklittlefs/mklfs.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Image creator for the littlefs
33
*
4-
* This file is part of the MicroPython ESP32 project, https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo
5-
*
6-
* Copyright (c) 2018 LoBo (https://github.com/loboris)
7-
*
4+
* This file is part of the MicroPython K210 project, https://github.com/loboris/MicroPython_K210_LoBo
5+
*
86
* The MIT License (MIT)
97
*
8+
* Copyright (c) 2019 LoBo (https://github.com/loboris)
9+
*
1010
* Permission is hereby granted, free of charge, to any person obtaining a copy
1111
* of this software and associated documentation files (the "Software"), to deal
1212
* in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)